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

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

</body>
</html>