diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-04-02 14:25:18 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-04-02 14:25:18 (GMT) |
commit | c2ec66c87e1cc650b0ae5f776173d1795cf1a558 (patch) | |
tree | 2ebe1f9f175059d97314dfbebec9c8dbac2053d9 /templates/program/timeslot_detail.html | |
parent | 8c8b20d8b5a882f816605192a675b2c838252c2c (diff) |
cleaned-up templates.
Diffstat (limited to 'templates/program/timeslot_detail.html')
-rw-r--r-- | templates/program/timeslot_detail.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/templates/program/timeslot_detail.html b/templates/program/timeslot_detail.html index f445f5d..f8dee29 100644 --- a/templates/program/timeslot_detail.html +++ b/templates/program/timeslot_detail.html @@ -1,13 +1,12 @@ <html> <head> <title>Timeslot detail: {{ timeslot }}</title> + <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" /> </head> <body> -<div id="calendar"></div> - <div id="timeslot-detail"> - <div id="name">{{ timeslot.show.name }}</div> + <div id="show-name">{{ timeslot.show.name }}</div> <div id="abbrevs"> {% for topic in timeslot.show.showtopic.all %} @@ -35,19 +34,21 @@ <div id="hosts"> {% for host in timeslot.show.hosts.all %} - <div class="host">{{ host }}</div> + <div class="host"><a href="{% url host-detail host.id %}">{{ host }}</a></div> {% endfor %} </div> + {% if timeslot.show.short_description != 'FIXME' %} <div id="short-description">{{ timeslot.show.short_description }}</div> + {% endif %} - <div id="description">{{ timeslot.show.description }}</div> + <div id="description">{{ timeslot.show.description|safe }}</div> <div id="note"> {% if timeslot.note %} <div class="note"> <div class="title">{{ timeslot.note.title }}</div> - <div class="content">{{ timeslot.note.content }}</div> + <div class="content">{{ timeslot.note.content|safe }}</div> </div> {% endif %} </div> |