blob: b780838eba20cd0a7feb6ea1697fb4aac3fe1ce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html>
<head>
<title>Host detail: {{ host.name }}</title>
</head>
<body>
<div id="host-detail">
<div id="name">{{ host.name }}</div>
{% if host.email %}
<div id="email">{{ host.email }}</div>
{% endif %}
{% if host.website %}
<div id="website">{{ host.website }}</div>
{% endif %}
</div>
</body>
</html>
|