From 64b0ff9e529ef47afa3c7583fb12d2fd43f1c7d7 Mon Sep 17 00:00:00 2001
From: Christian Pointner <equinox@helsinki.at>
Date: Wed, 30 Mar 2016 18:14:56 +0200
Subject: [PATCH] fixed jquery-ui path in day_schedule template, fixed
 recommendations template

---
 program/templates/day_schedule.html        | 5 ++---
 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 7a371e6f..61005dd6 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" }} &mdash; 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 8070b29c..3fcc5d19 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
-- 
GitLab