Skip to content
Snippets Groups Projects
Commit bc4e14f6 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

fixed templates.

parent da7a48b7
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<body> <body>
<div id="host-list"> <div id="host-list">
{% for host in host_list %} {% for host in hosts %}
<div class="host"> <div class="host">
<a href="{% url host-detail host.id %}">{{ host.name }}</a> <a href="{% url host-detail host.id %}">{{ host.name }}</a>
</div> </div>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<body> <body>
<div id="showtopic-list"> <div id="showtopic-list">
{% for topic in showtopic_list %} {% for topic in showtopics %}
<div class="showtopic"> <div class="showtopic">
<span class="abbrev">{{ topic.abbrev }}</span> <span class="abbrev">{{ topic.abbrev }}</span>
<span class="topic">{{ topic }}</span> <span class="topic">{{ topic }}</span>
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</div> </div>
<div id="showinformation-list"> <div id="showinformation-list">
{% for information in showinformation_list %} {% for information in showinformations %}
<div class="showinformation"> <div class="showinformation">
<span class="abbrev">{{ information.abbrev }}</span> <span class="abbrev">{{ information.abbrev }}</span>
<span class="information">{{ information }}</span> <span class="information">{{ information }}</span>
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
</div> </div>
<div id="musicfocus-list"> <div id="musicfocus-list">
{% for focus in musicfocus_list %} {% for focus in musicfoci %}
<div class="musicfocus"> <div class="musicfocus">
<span class="abbrev">{{ focus.abbrev }}</span> <span class="abbrev">{{ focus.abbrev }}</span>
<span class="focus">{{ focus }}</span> <span class="focus">{{ focus }}</span>
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
</div> </div>
<div id="show-list"> <div id="show-list">
{% for show in show_list %} {% for show in shows %}
<div class="show"> <div class="show">
<div class="abbrevs"> <div class="abbrevs">
{% for topic in show.showtopic.all %} {% for topic in show.showtopic.all %}
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
</div> </div>
<div id="broadcastformat-list"> <div id="broadcastformat-list">
{% for format in broadcastformat_list %} {% for format in broadcastformats %}
<div class="broadcastformat">{{ format }}</div> <div class="broadcastformat">{{ format }}</div>
{% endfor %} {% endfor %}
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment