summaryrefslogtreecommitdiff
path: root/pv
diff options
context:
space:
mode:
Diffstat (limited to 'pv')
-rw-r--r--pv/templates/program/show_detail.html5
-rw-r--r--pv/wsgi.py4
2 files changed, 7 insertions, 2 deletions
diff --git a/pv/templates/program/show_detail.html b/pv/templates/program/show_detail.html
index c75b322..0f4b302 100644
--- a/pv/templates/program/show_detail.html
+++ b/pv/templates/program/show_detail.html
@@ -67,7 +67,10 @@
<h2>Sendungstipps</h2>
<ul class="recommendations-list">
{% for note in show.notes.all reversed %}
- <li><a href="{% url timeslot-detail note.timeslot.id %}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}:</a> {{ note.title }}</li>
+ <li>
+ <a href="{% url timeslot-detail note.timeslot.id %}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}:</a>
+ <div class="title">{{ note.title }}</div>
+ </li>
{% endfor %}
</ul>
{% endif %}
diff --git a/pv/wsgi.py b/pv/wsgi.py
index c51af8c..e5b7531 100644
--- a/pv/wsgi.py
+++ b/pv/wsgi.py
@@ -13,7 +13,9 @@ middleware here, or combine a Django application with an application of another
framework.
"""
-import os
+import os, sys
+
+sys.path.append('/var/www/pv/helsinki')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pv.settings")