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