summaryrefslogtreecommitdiff
path: root/localwebsite/templates-web/routing_dhcp_page.twig
blob: 12b837e06aeaac684f3806933cfb417304d40654 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% include 'routing_header.twig' with {
  selected_tab: 'dhcp'
} %}

{% 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 %}