Skip to content
Snippets Groups Projects
Commit 885303f4 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Merge branch 'master' of github.com:nnrcschmdt/helsinki

parents 103a909a 3b35294c
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,8 @@
<dd class="portletItem">
<ul>
{% for item in musicfoci %}
<li class="mf-{{ item.abbrev }}">
<a href="../?musicfocus={{ item.slug }}">{{ item }}</a>
<li>
<a class="filteritem mf-{{ item.abbrev }}" href="?musicfocus={{ item.slug }}">{{ item }}</a>
</li>
{% endfor %}
</ul>
......
......@@ -4,8 +4,8 @@
<dd class="portletItem">
<ul>
{% for item in showinformations %}
<li class="si-{{ item.abbrev }}">
<a href="../?showinformation={{ item.slug }}">{{ item }}</a>
<li>
<a class="filteritem si-{{ item.abbrev }}" href="?showinformation={{ item.slug }}">{{ item }}</a>
</li>
{% endfor %}
</ul>
......
......@@ -4,8 +4,8 @@
<dd class="portletItem">
<ul>
{% for item in showtopics %}
<li class="st-{{ item.abbrev }}">
<a href="../?showtopic={{ item.slug }}">{{ item }}</a>
<li>
<a class="filteritem st-{{ item.abbrev }}" href="?showtopic={{ item.slug }}">{{ item }}</a>
</li>
{% endfor %}
</ul>
......
......@@ -27,8 +27,8 @@
<div id="timeslots">
{% for timeslot in timeslots %}
<div class="timeslot bcformat-{{ timeslot.show.broadcastformat.slug }}">
<div class="start">{{ timeslot.start|date:"H:i" }}</div>
<div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}">
<div class="show-start">{{ timeslot.start|date:"H:i" }}</div>
<div class="show-abbrevs">
{% for showinformation in timeslot.show.showinformation.all %}
<span class="si-{{ showinformation.abbrev }}">{{ showinformation.abbrev }}</span>
......@@ -41,12 +41,12 @@
{% endfor %}
</div>
<div class="show">
<h3 class="name"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></h3>
<h3 class="show-title"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></h3>
{% if timeslot.note %}
<p class="note-title"><strong>Heute:</strong> {{ timeslot.note.title }}</p>
{% else %}
{% if timeslot.show.short_description != 'FIXME' %}
<p class="short-description">{{ timeslot.show.short_description }}</p>
<p class="show-description">{{ timeslot.show.short_description }}</p>
{% endif %}
{% endif %}
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment