Skip to content
Snippets Groups Projects
Commit 2aaaf95a authored by Johannes Raggam's avatar Johannes Raggam
Browse files

timeslot opts

parent 2b11768e
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,9 @@ ...@@ -19,7 +19,9 @@
{{ item.timeslot.start|date:"d.m. H:i" }} - {{ item.timeslot.start|date:"d.m. H:i" }} -
{{ item.timeslot.end|date:"H:i" }}<br /> {{ item.timeslot.end|date:"H:i" }}<br />
<h3><a href="{% url show-detail item.show.slug %}">{{ item.show.name }}</a></h3> <h3>
<a href="{% url timeslot-detail item.timeslot.id %}">{{ item.show.name }}</a>
</h3>
<p class="note-title"> <p class="note-title">
{{ item.title }}<br /> {{ item.title }}<br />
<a href="{% url timeslot-detail item.timeslot.id %}">[weiter]</a> <a href="{% url timeslot-detail item.timeslot.id %}">[weiter]</a>
......
...@@ -7,7 +7,13 @@ ...@@ -7,7 +7,13 @@
<div id="content-main" class="timeslot-detail"> <div id="content-main" class="timeslot-detail">
<div class="show-detail-header bf-{{timeslot.show.broadcastformat.slug}}"> <div class="show-detail-header bf-{{timeslot.show.broadcastformat.slug}}">
<h1 id="name"><a href="{% url show-detail timeslot.show.slug %}">{{ timeslot.show.name }}</a></h1> <h1 id="name">
<a href="{% url show-detail timeslot.show.slug %}">{{ timeslot.show.name }}</a>
</h1>
{% if timeslot.note %}
<h2>{{ timeslot.note.title }}</h2>
{% endif %}
<strong>Sendung am {{ timeslot.start|date:"d.m. H:i" }} bis {{ timeslot.end|date:"H:i" }}</strong>
<div class="show-abbrevs"> <div class="show-abbrevs">
{% for item in timeslot.show.showinformation.all %} {% for item in timeslot.show.showinformation.all %}
...@@ -25,7 +31,6 @@ ...@@ -25,7 +31,6 @@
</div> </div>
{% if timeslot.note %} {% if timeslot.note %}
<h2>{{ timeslot.note.title }}</h2>
<p class="timeslot-note">{{ timeslot.note.content|safe }}</p> <p class="timeslot-note">{{ timeslot.note.content|safe }}</p>
{% endif %} {% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment