From 9a02c4960f14cbb7ee9f0df7d6b8708907d5af94 Mon Sep 17 00:00:00 2001
From: Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com>
Date: Sun, 13 Mar 2011 18:19:05 +0100
Subject: fixed ids in templates.


diff --git a/templates/program/show_detail.html b/templates/program/show_detail.html
index e2216ff..389dab7 100644
--- a/templates/program/show_detail.html
+++ b/templates/program/show_detail.html
@@ -25,7 +25,7 @@
         <span class="broadcastformat-abbrev">{{ show.broadcastformat.abbrev }}</span>
     </div>
 
-    <div id="program-slots">
+    <div id="programslots">
     {% for slot in show.programslots.all %}
         <div class="programslot">{{ slot }}</div>
     {% endfor %}
diff --git a/templates/program/timeslot_detail.html b/templates/program/timeslot_detail.html
index d8a677e..f445f5d 100644
--- a/templates/program/timeslot_detail.html
+++ b/templates/program/timeslot_detail.html
@@ -25,9 +25,9 @@
         <span class="broadcastformat-abbrev">{{ timeslot.show.broadcastformat.abbrev }}</span>
     </div>
 
-    <div id="program-slots">
+    <div id="programslots">
     {% for slot in timeslot.show.programslots.all %}
-        <div class="program-slot">{{ slot }}</div>
+        <div class="programslot">{{ slot }}</div>
     {% endfor %}
     </div>
 
-- 
cgit v0.10.2