mirror of
https://github.com/sileht/bird-lg.git
synced 2024-11-01 05:54:43 +01:00
12 lines
253 B
HTML
12 lines
253 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
{% for host in detail %}
|
|
<h3>{{host}}/{{session.proto}}: {{command}}</h3>
|
|
<i>{{ detail[host].status }}</i><br /><br />
|
|
<pre>
|
|
{{ detail[host].description|trim|safe }}
|
|
</pre>
|
|
<br />
|
|
{% endfor %}
|
|
{% endblock %}
|