mirror of
https://github.com/sileht/bird-lg.git
synced 2024-11-22 06:54:43 +01:00
8 lines
246 B
HTML
8 lines
246 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
{% for host in infos %}
|
|
<h2 id="traceroute_cmd_{{host}}">{{host}}/{{session.proto}}: traceroute {{session.request_args}}</h3>
|
|
<div class="detail">{{infos[host]|safe}}</div>
|
|
{% endfor %}
|
|
{% endblock %}
|