1
0
Fork 0
mirror of https://github.com/sileht/bird-lg.git synced 2024-09-20 22:14:43 +02:00
bird-lg/templates/detail.html
2012-02-05 14:30:32 +01:00

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