2012-01-20 00:12:19 +01:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
{% for host in detail %}
|
2012-02-05 14:30:32 +01:00
|
|
|
<h3>{{host}}/{{session.proto}}: {{command}}</h3>
|
|
|
|
<i>{{ detail[host].status }}</i><br /><br />
|
2012-01-20 00:12:19 +01:00
|
|
|
<pre>
|
2012-02-05 14:30:32 +01:00
|
|
|
{{ detail[host].description|trim|safe }}
|
2012-01-20 00:12:19 +01:00
|
|
|
</pre>
|
2012-02-05 14:30:32 +01:00
|
|
|
<br />
|
2012-01-20 00:12:19 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|