summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-03-21 21:27:06 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-03-21 21:27:06 (GMT)
commitbc4e14f6bd7b8df7988f547a02aa52f8065c6e43 (patch)
treeb7f772ea8528dae39623670cef8ef0912580b36c /templates
parentda7a48b7014613636b5e4a84866b6e0da3797d1a (diff)
fixed templates.
Diffstat (limited to 'templates')
-rw-r--r--templates/program/host_list.html2
-rw-r--r--templates/program/show_list.html10
2 files changed, 6 insertions, 6 deletions
diff --git a/templates/program/host_list.html b/templates/program/host_list.html
index ee67192..365154a 100644
--- a/templates/program/host_list.html
+++ b/templates/program/host_list.html
@@ -5,7 +5,7 @@
<body>
<div id="host-list">
-{% for host in host_list %}
+{% for host in hosts %}
<div class="host">
<a href="{% url host-detail host.id %}">{{ host.name }}</a>
</div>
diff --git a/templates/program/show_list.html b/templates/program/show_list.html
index 844395d..7643087 100644
--- a/templates/program/show_list.html
+++ b/templates/program/show_list.html
@@ -5,7 +5,7 @@
<body>
<div id="showtopic-list">
-{% for topic in showtopic_list %}
+{% for topic in showtopics %}
<div class="showtopic">
<span class="abbrev">{{ topic.abbrev }}</span>
<span class="topic">{{ topic }}</span>
@@ -14,7 +14,7 @@
</div>
<div id="showinformation-list">
-{% for information in showinformation_list %}
+{% for information in showinformations %}
<div class="showinformation">
<span class="abbrev">{{ information.abbrev }}</span>
<span class="information">{{ information }}</span>
@@ -23,7 +23,7 @@
</div>
<div id="musicfocus-list">
-{% for focus in musicfocus_list %}
+{% for focus in musicfoci %}
<div class="musicfocus">
<span class="abbrev">{{ focus.abbrev }}</span>
<span class="focus">{{ focus }}</span>
@@ -32,7 +32,7 @@
</div>
<div id="show-list">
-{% for show in show_list %}
+{% for show in shows %}
<div class="show">
<div class="abbrevs">
{% for topic in show.showtopic.all %}
@@ -64,7 +64,7 @@
</div>
<div id="broadcastformat-list">
-{% for format in broadcastformat_list %}
+{% for format in broadcastformats %}
<div class="broadcastformat">{{ format }}</div>
{% endfor %}
</div>