{% extends "base.html" %} {% block title %}租约{% endblock %} {% block content %}

租约查询

{% if leases %} {% for l in leases %} {% endfor %}
IP MAC 主机名 状态 开始 结束 剩余
{{ l.ip }} {{ l.mac or '—' }} {{ l.client_hostname or '—' }} {% if l.binding_state == 'active' %} active {% elif l.binding_state == 'free' %} free {% else %} {{ l.binding_state }} {% endif %} {{ l.starts or '—' }} {{ l.ends or '—' }} {% set rem = l.remaining_seconds() %} {% if rem is none %}— {% elif rem < 0 %}已过期 {% else %}{{ rem|format_duration }} {% endif %}

共 {{ leases|length }} 条租约

{% else %}

暂无租约记录{% if q %}(搜索 "{{ q }}" 无结果){% endif %}

{% endif %} {% endblock %}