diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-03-22 14:41:52 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-03-22 14:41:52 (GMT) |
commit | 7a0b47393e36a4405487277d20d09406a7cf4565 (patch) | |
tree | 957a6eb002dba3fb416459b17b8c344aaa2269ba /templates/program | |
parent | a48df664dd9da38b02b3dc0c82a7eb4969db5b96 (diff) |
added missing header to templates.
Diffstat (limited to 'templates/program')
-rw-r--r-- | templates/program/current.html | 10 | ||||
-rw-r--r-- | templates/program/day_schedule.html | 25 |
2 files changed, 25 insertions, 10 deletions
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 |