bird-lg/templates/detail.html
Zhaofeng Li ddf86d02fb Add support for unified Bird daemons
Bird 2.0 includes IPv4 and IPv6 support in a single daemon.
When UNIFIED_DAEMON is set to True, queries are always done with the
"ipv4" backend (which handles both protocols), and distinctions between
IPv4 and IPv4 are removed in the UI.
2019-01-11 21:14:12 +00:00

12 lines
298 B
HTML

{% extends "layout.html" %}
{% block body %}
{% for host in detail %}
<h3>{{host}}{% if not config.UNIFIED_DAEMON %}/{{session.proto}}{% endif %}: {{command}}</h3>
<i>{{ detail[host].status }}</i><br /><br />
<pre>
{{ detail[host].description|trim|safe }}
</pre>
<br />
{% endfor %}
{% endblock %}