aboutsummaryrefslogtreecommitdiff
path: root/pyenc/templates/host.html
blob: a44eb82b73221b4fb0252c4f05e0e2cd71ed828c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 #}