diff --git a/modules/admin/templates/diagnostics.twig b/modules/admin/templates/diagnostics.twig new file mode 100644 index 0000000000000000000000000000000000000000..7e5e36064e20cd1312e6e1eda6dc79383ca081b9 --- /dev/null +++ b/modules/admin/templates/diagnostics.twig @@ -0,0 +1,17 @@ +{% set pagetitle = 'Diagnostics on hostname, port and protocol'|trans %} +{% set frontpage_section = 'main' %} +{% extends "base.twig" %} + +{% block content %} + {%- include "@admin/includes/menu.twig" %} + {%- embed "_table.twig" %} + {%- block namecol %} + + <td class="attrname"><samp>{{ name }}</samp></td> + {%- endblock namecol %} + {%- block value %} + + {{ value }} + {%- endblock value %} + {%- endembed %} +{% endblock %}