bird-lg/templates/detail.html

13 lines
250 B
HTML
Raw Normal View History

2012-01-20 00:12:19 +01:00
{% extends "layout.html" %}
{% block body %}
{% for host in detail %}
<div class="detail">
<h2>{{host}}/{{session.proto}}: {{command}}</h2>
{{ detail[host].status }}
<pre>
{{ detail[host].description|safe }}
</pre>
</div>
{% endfor %}
{% endblock %}