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

11 lines
287 B
HTML

{% extends "layout.html" %}
{% block body %}
{% for host in infos %}
<h3 id="traceroute_cmd_{{host}}">{{host}}/{{session.proto}}: traceroute {{session.request_args}}</h3><br />
{% if infos[host]|trim %}
<pre>{{infos[host]|trim|safe}}</pre>
{% endif %}
<br />
{% endfor %}
{% endblock %}