diff options
-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 |