aboutsummaryrefslogtreecommitdiff
path: root/web/kbn_templates/routing_dhcp.j2
blob: c8a3e8e29e1abb2abf5855d5ef4c6782fdda741a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.j2" %}

{% block content %}
{% include 'routing_header.j2' %}

{% for lease in leases %}
    <div class="mt-3">
        <b>{{ lease.hostname }}</b> <span class="text-secondary">(exp: {{ lease.time_s }})</span><br/>
        {{ lease.ip }}<br>
        <span class="text-secondary">{{ lease.mac }}</span>
    </div>
{% endfor %}

{% endblock %}