summaryrefslogtreecommitdiff
path: root/templates/program/host_list.html
blob: 365154a70429e2a9bc22a28d0b64cb8434058da8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
    <title>Host list</title>
</head>
<body>

<div id="host-list">
{% for host in hosts %}
    <div class="host">
        <a href="{% url host-detail host.id %}">{{ host.name }}</a>
    </div>
{% endfor %}
</div>

</body>
</html>