summaryrefslogtreecommitdiff
path: root/templates/program/host_list.html
blob: 9b83b29d6b890a1842165667a987aee54d3f9043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
    <title>Host list</title>
    <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>

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

</body>
</html>