summaryrefslogtreecommitdiff
path: root/templates/program
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-07-16 12:43:17 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-07-16 12:43:17 (GMT)
commit9976b9ebe22a6ec062911ed247742cabb101c626 (patch)
tree6d89b61c48d0f3e645c48581a134969e517fc24a /templates/program
parent2b6b7c90eef35d7d7c9c67d82f757b83794ebd4d (diff)
removed checks for incomplete show short descriptions.
Diffstat (limited to 'templates/program')
-rw-r--r--templates/program/boxes/current.html2
-rw-r--r--templates/program/day_schedule.html2
-rw-r--r--templates/program/show_detail.html2
-rw-r--r--templates/program/show_list.html2
-rw-r--r--templates/program/timeslot_detail.html2
5 files changed, 0 insertions, 10 deletions
diff --git a/templates/program/boxes/current.html b/templates/program/boxes/current.html
index 440ef41..ba1df21 100644
--- a/templates/program/boxes/current.html
+++ b/templates/program/boxes/current.html
@@ -29,9 +29,7 @@
{% if current.note %}
<p>{{ current.note.title }}</p>
{% else %}
- {% if current.show.short_description != 'FIXME' %}
<p>{{ current.show.short_description }}</p>
- {% endif %}
{% endif %}
</td>
</tr>
diff --git a/templates/program/day_schedule.html b/templates/program/day_schedule.html
index 0c3393a..2ed108d 100644
--- a/templates/program/day_schedule.html
+++ b/templates/program/day_schedule.html
@@ -76,9 +76,7 @@
{% if timeslot.note %}
<p class="note-title"><strong>Heute:</strong> {{ timeslot.note.title }}</p>
{% else %}
- {% if timeslot.show.short_description != 'FIXME' %}
<p class="show-description">{{ timeslot.show.short_description }}</p>
- {% endif %}
{% endif %}
</div>
</div>
diff --git a/templates/program/show_detail.html b/templates/program/show_detail.html
index 05cd0ed..9311acc 100644
--- a/templates/program/show_detail.html
+++ b/templates/program/show_detail.html
@@ -35,9 +35,7 @@
</div>
- {% if show.short_description != 'FIXME' %}
<div id="short-description" class="documentDescription">{{ show.short_description }}</div>
- {% endif %}
<div id="description">{{ show.description|safe }}</div>
diff --git a/templates/program/show_list.html b/templates/program/show_list.html
index bb5b070..c527c09 100644
--- a/templates/program/show_list.html
+++ b/templates/program/show_list.html
@@ -41,9 +41,7 @@
<li class="show-programslot">{{ slot }}</li>
{% endfor %}
</ul>
- {% if show.short_description != 'FIXME' %}
<p class="show-description">{{ show.short_description }}</p>
- {% endif %}
</div>
</div>
{% endfor %}
diff --git a/templates/program/timeslot_detail.html b/templates/program/timeslot_detail.html
index 8b08f8b..ead061b 100644
--- a/templates/program/timeslot_detail.html
+++ b/templates/program/timeslot_detail.html
@@ -29,9 +29,7 @@
<p class="timeslot-note">{{ timeslot.note.content|safe }}</p>
{% endif %}
- {% if timeslot.show.short_description != 'FIXME' %}
<div id="short-description" class="documentDescription">{{ timeslot.show.short_description }}</div>
- {% endif %}
<div id="description">{{ timeslot.show.description|safe }}</div>