diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-23 18:02:40 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-23 18:02:40 (GMT) |
commit | f136e6bb921b424692e7f29c93cfbf804622d47f (patch) | |
tree | 6d960430fed69d777913b6278b25c86d73b88970 /pv | |
parent | 4590065b6ca9d7698c22277a4da1505486c8b637 (diff) | |
parent | 902cc6cfbef3f50268f73dc8690295bf2d556e30 (diff) |
Merge branch 'master' of https://github.com/nnrcschmdt/helsinki
Diffstat (limited to 'pv')
-rw-r--r-- | pv/templates/program/show_detail.html | 5 | ||||
-rw-r--r-- | pv/wsgi.py | 4 |
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 %} @@ -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") |