2012-01-20 00:12:19 +01:00
{% extends "layout.html" %}
{% block body %}
{% for host in detail %}
2012-05-29 16:53:19 +02:00
< h3 >
{{host}}: {{command}}
< small > < a class = "pull-right" href = "/{{session.request_type|replace(" _detail " , " " ) } } _bgpmap / { { session . hosts } } / { { session . proto } } ? q = {{session.request_args}}" > View the BGP map< / a > < / small >
< / h3 >
2012-02-05 14:30:32 +01:00
{% if session.request_args != expression|replace("/32","")|replace("/128","") %}
< i > DNS: < a href = "/whois/{{session.request_args}}" class = "whois" > {{session.request_args}}< / a > => < a href = "/whois/{{ expression|replace(" / 32 " , " " ) | replace ( " / 128 " , " " ) } } " class = "whois" > {{expression|replace("/32","")|replace("/128","")}}< / a > < / i > < br / >
{% endif %}< br / >
2012-01-20 00:12:19 +01:00
< pre >
2012-02-05 14:30:32 +01:00
{{ detail[host]|trim|safe }}
2012-01-20 00:12:19 +01:00
< / pre >
{% endfor %}
2012-05-27 14:30:31 +02:00
< br / >
2012-01-20 00:12:19 +01:00
{% endblock %}