diff --git a/templates/hostnames.twig b/templates/hostnames.twig new file mode 100644 index 0000000000000000000000000000000000000000..79f6411f034b1202436513f6d76d345237ec4f34 --- /dev/null +++ b/templates/hostnames.twig @@ -0,0 +1,20 @@ +{% set pagetitle = 'Diagnostics on hostname, port and protocol'|trans %} +{% extends "base.twig" %} + +{% block content %} + <h2>{{ pagetitle }}</h2> + {% set items = attributes %} + + {% embed '_table.twig' %} + + {% block namecol %} + <td class="attrname"><samp>{{ name }}</samp></td> + {% endblock %} + + {% block value %} + {{ value }} + {% endblock %} + + {% endembed %} + +{% endblock %}