ddf86d02fb
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.
12 lines
298 B
HTML
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 %}
|