mirror of
https://github.com/sileht/bird-lg.git
synced 2024-11-10 17:54:43 +01:00
13 lines
250 B
HTML
13 lines
250 B
HTML
{% 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 %}
|