summaryrefslogtreecommitdiff
path: root/templates/program/show_list.html
blob: 09bfa047cb631aada9ca8ddc5acf46ccbfdb58fa (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<html>
<head>
    <title>Show list</title>
</head>
<body>

<div id="show-topic-list">
    {% for topic in show_topic_list %}
    <div class="show-topic">
        <span class="abbrev">{{ topic.abbrev }}</span>
        <span class="topic">{{ topic }}</span>
    </div>
    {% endfor %}
</div>

<div id="show-information-list">
    {% for information in show_information_list %}
    <div class="show-information">
        <span class="abbrev">{{ information.abbrev }}</span>
        <span class="information">{{ information }}</span>
    </div>
    {% endfor %}
</div>

<div id="music-focus-list">
    {% for focus in music_focus_list %}
    <div class="music-focus">
        <span class="abbrev">{{ focus.abbrev }}</span>
        <span class="focus">{{ focus }}</span>
    </div>
    {% endfor %}
</div>

<div id="show-list">
    {% for show in show_list %}
    <div class="show">
        <div class="abbrevs">
            {% for topic in show.show_topic.all %}
                <span class="topic-abbrev">{{ topic.abbrev }}</span>
            {% endfor %}

            {% for information in show.show_information.all %}
                <span class="information-abbrev">{{ information.abbrev }}</span>
            {% endfor %}

            {% for focus in show.music_focus.all %}
                <span class="focus-abbrev">{{ focus.abbrev }}</span>
            {% endfor %}

            <span class="broadcast-format-abbrev">{{ show.broadcast_format.abbrev }}</span>
        </div>
        <div class="name">
            <a href="{% url show-detail show.slug %} ">{{ show.name }}</a>
        </div>
        <div class="program-slots">
            {% for slot in show.program_slots.all %}
                <div class="program-slot">{{ slot }}</div>
            {% endfor %}
        </div>
        <div class="short-description">
            {{ show.short_description }}
        </div>
     </div>
    {% endfor %}
</div>

<div id="broadcast-format-list">
    {% for format in broadcast_format_list %}
        <div class="broadcast-format">
            {{ format }}
        </div>
    {% endfor %}
</div>

</body>
</html>