aboutsummaryrefslogtreecommitdiff
path: root/pyenc/templates/host.html
blob: 84e76e34d669b414b454c172fcf110b8eefe2972 (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
{% 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>
	<!--
			- indirect classes
			- basic description
			- basic system info
			- link to further documentation
			- notes
		-->
</dl>
{% endblock %}
{# ft:jinja #}