summaryrefslogtreecommitdiff
path: root/templates/program/host_list.html
blob: 8ad81b05a6dc3361bb2ba443e4546d6aa25e53bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
    <title>Sendungsmacherinnen &mdash; Radio Helsinki - Freies Radio Graz</title>
</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>