From 7a0b47393e36a4405487277d20d09406a7cf4565 Mon Sep 17 00:00:00 2001
From: Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com>
Date: Tue, 22 Mar 2011 15:41:52 +0100
Subject: added missing header to templates.


diff --git a/templates/program/current.html b/templates/program/current.html
index fd53d45..193762a 100644
--- a/templates/program/current.html
+++ b/templates/program/current.html
@@ -1,3 +1,8 @@
+<html>
+<head>
+    <title>Current program</title>
+</head>
+<body>
 
 <div id="program-now">
     <div id="current-show">
@@ -11,4 +16,7 @@
     <div id="after-next-show">
         {{ after_next }}
     </div>
-</div>
\ No newline at end of file
+</div>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/templates/program/day_schedule.html b/templates/program/day_schedule.html
index cb32ae8..2d20bdf 100644
--- a/templates/program/day_schedule.html
+++ b/templates/program/day_schedule.html
@@ -1,13 +1,17 @@
+<html>
+<head>
+    <title>Day schedule</title>
+</head>
 
+<body>
 
-<div id="calendar">
-</div>
+<div id="calendar"></div>
 
 <div id="recommendations">
     {% for recommendation in recommendations %}
-        <div>{{ recommendation.timeslot.start|date:"H:i" }}</div>
-        <div>{{ recommendation.timeslot.programslot.show.name }}</div>
-        <div><a href="{% url timeslot-detail recommendation.timeslot.id %}">{{ recommendation.title }}</a></div>
+    <div>{{ recommendation.timeslot.start|date:"H:i" }}</div>
+    <div>{{ recommendation.timeslot.programslot.show.name }}</div>
+    <div><a href="{% url timeslot-detail recommendation.timeslot.id %}">{{ recommendation.title }}</a></div>
     {% endfor %}
 </div>
 
@@ -41,8 +45,11 @@
 
 <div>
     {% for broadcastformat in broadcastformats %}
-        <div>
-            {{ broadcastformat }}
-        </div>
+    <div>
+        {{ broadcastformat }}
+    </div>
     {% endfor %}
-</div>
\ No newline at end of file
+</div>
+
+</body>
+</html>
\ No newline at end of file
-- 
cgit v0.10.2