aboutsummaryrefslogtreecommitdiff
path: root/pyenc/templates/environment.html
blob: b0995d60de0061654ccdcec1a2d69a98dead7dd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 #}