diff options
author | Johannes Raggam <raggam-nl@adm.at> | 2011-06-09 15:15:53 (GMT) |
---|---|---|
committer | Johannes Raggam <raggam-nl@adm.at> | 2011-06-09 15:15:53 (GMT) |
commit | f56557a4dc59bab3b65c6e9b45f7f53cc9e78a2d (patch) | |
tree | b50109c6f2d73a223e32a0f57d78a04941358882 /templates | |
parent | 345574d9d00f8ffdcbc8e4fa0e7939a7a068b6f4 (diff) |
show details
Diffstat (limited to 'templates')
-rw-r--r-- | templates/program/show_detail.html | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/templates/program/show_detail.html b/templates/program/show_detail.html index 61735e6..443a64a 100644 --- a/templates/program/show_detail.html +++ b/templates/program/show_detail.html @@ -9,28 +9,30 @@ <div id="content-main" class="show-detail"> <div class="show-detail-header bf-{{show.broadcastformat.slug}}"> + <div class="show-details"> <h1 id="name">{{ show.name }}</h1> <p id="programslots"> {% for slot in show.programslots.all %} <span class="programslot">{{ slot }}</span><br /> {% endfor %} </p> + </div> - <div class="show-abbrevs"> - {% for item in show.showinformation.all %} - <span title="{{item.information}}" class="abbrev si-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> - {% endfor %} - {% for item in show.showtopic.all %} - <span title="{{item.topic}}" class="abbrev st-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> - {% endfor %} - {% for item in show.musicfocus.all %} - <span title="{{item.focus}}" class="abbrev mf-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> - {% endfor %} - </div> - + <div class="show-categorization"> <p id="broadcastformat">{{ show.broadcastformat.format }}</p> + {% for item in show.showinformation.all %} + <span title="{{item.information}}" class="abbrev si-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> + {% endfor %} + {% for item in show.showtopic.all %} + <span title="{{item.topic}}" class="abbrev st-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> + {% endfor %} + {% for item in show.musicfocus.all %} + <span title="{{item.focus}}" class="abbrev mf-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> + {% endfor %} </div> + </div> + {% if show.short_description != 'FIXME' %} <div id="short-description" class="documentDescription">{{ show.short_description }}</div> {% endif %} |