summaryrefslogtreecommitdiff
path: root/templates/program/show_list.html
blob: 2b0cb9cfeb76d5c7d3ff9a84deacb8c6cf6bf5c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<html>
<head>
    <title>Show list</title>
    <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>

{% load content_boxes %}
<div id="filter-format">
{% broadcastformat %}
</div>
<div id="filter-topic">
  <dl id="filter-header" class="portlet">
    <dt class="portletHeader"><span>Filter<span></dt>
  </dl>
{% musicfocus %}
{% showinformation %}
{% showtopic %}
</div>

<div id="content-main" class="show-list">
  <h1>Sendungen</h1>

  <div id="shows">
    {% for show in show_list %}
    <div class="show bf-{{ show.broadcastformat.slug }}">
        <div class="show-abbrevs">
        {% for showinformation in show.showinformation.all %}
            <span class="si-{{ showinformation.abbrev }}">{{ showinformation.abbrev }}</span>
        {% endfor %}
        {% for showtopic in show.showtopic.all %}
            <span class="st-{{ showtopic.abbrev }}">{{ showtopic.abbrev }}</span>
        {% endfor %}
        {% for musicfocus in show.musicfocus.all %}
            <span class="mf-{{ musicfocus.abbrev }}">{{ musicfocus.abbrev }}</span>
        {% endfor %}
        </div>
        <div class="show-detail">
            <h3 class="show-title"><a href="{% url show-detail show.slug %}">{{ show.name }}</a></h3>
            <div class="show-programslots">
            {% for slot in show.programslots.all %}
                <p class="show-programslot">{{ slot }}</p>
            {% endfor %}
            </div>
            {% if show.short_description != 'FIXME' %}
            <p class="show-description">{{ show.short_description }}</p>
            {% endif %}
        </div>
    </div>
  {% endfor %}
  </div>

</div>

</body>
</html>