diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-03-30 16:14:56 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-03-30 16:16:54 (GMT) |
commit | 64b0ff9e529ef47afa3c7583fb12d2fd43f1c7d7 (patch) | |
tree | 491489a13ba08463238675b0682ab5f896ff65ad /program | |
parent | 65efbfa1afb6161f0a4220b9da49904abf86e121 (diff) |
fixed jquery-ui path in day_schedule template, fixed recommendations template
Diffstat (limited to 'program')
-rw-r--r-- | program/templates/day_schedule.html | 5 | ||||
-rw-r--r-- | program/templates/recommendation_list.html | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/program/templates/day_schedule.html b/program/templates/day_schedule.html index 7a371e6..61005dd 100644 --- a/program/templates/day_schedule.html +++ b/program/templates/day_schedule.html @@ -1,10 +1,9 @@ <html> <head> <title>Tagesansicht {{ day|date:"l, d.m.Y" }} — Radio Helsinki - Freies Radio Graz</title> - <link type="text/css" href="/program/static/js/jqueryui/jquery-ui.css" rel="stylesheet"/> <script type="text/javascript" src="/program/static/js/jquery/jquery.min.js"></script> - <script type="text/javascript" src="/program/static/js/jqueryui/jquery-ui.min.js"></script> - <script type="text/javascript" src="/program/static/js/jqueryui/ui/jquery.ui.datepicker.min.js"></script> + <script type="text/javascript" src="/program/static/js/jquery-ui/jquery-ui.min.js"></script> + <script type="text/javascript" src="/program/static/js/jquery-ui/ui/jquery.ui.datepicker.min.js"></script> <script type="text/javascript"> jQuery(document).ready(function () { jQuery("#calendar").datepicker({ diff --git a/program/templates/recommendation_list.html b/program/templates/recommendation_list.html index 8070b29..3fcc5d1 100644 --- a/program/templates/recommendation_list.html +++ b/program/templates/recommendation_list.html @@ -28,8 +28,9 @@ <a href="{% url "show-detail" recommendation.show.slug %}">{{ recommendation.show.name }}</a><br/> vom {{ recommendation.start|date:"d.m. H:i" }}-{{ recommendation.end|date:"H:i" }}</h4> {% if recommendation.note %} - <h3 class="show-title"></h3> - <a href="{% url "timeslot-detail" recommendation.id %}">{{ recommendation.note.title }}</a></h3> + <h3 class="show-title"> + <a href="{% url "timeslot-detail" recommendation.id %}">{{ recommendation.note.title }}</a> + </h3> <div class="note-content">{{ recommendation.note.content|safe }}</div> {% else %} <h3 class="show-title"><a |