aboutsummaryrefslogtreecommitdiff
path: root/pyenc/templates/host.html
diff options
context:
space:
mode:
Diffstat (limited to 'pyenc/templates/host.html')
-rw-r--r--pyenc/templates/host.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/pyenc/templates/host.html b/pyenc/templates/host.html
new file mode 100644
index 0000000..a44eb82
--- /dev/null
+++ b/pyenc/templates/host.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% block content %}
+<h1>Host ‘{{ title }}’</h1>
+<dl>
+ <dt>Environment</dt>
+ <dd><a href="/environment/{{ env }}">{{ env }}</a></dd>
+ <dt>Direct Classes</dt>
+ <dd>
+ <ul>
+ {% for cls in classes %}
+ <li>{{ cls|safe }}</li>
+ {% endfor %}
+ </ul>
+ </dd>
+</dl>
+{% endblock %}
+{# ft:jinja #}