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