summaryrefslogtreecommitdiff
path: root/templates/program
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2011-06-07 15:35:28 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2011-06-07 15:35:28 (GMT)
commitccdbc85dfcaff9724f92ecc16b9cbb9489786c5f (patch)
tree875523767f3313b679662a206bafec883126b67d /templates/program
parent92500c8a48753af2779b7732d579864c91630b9d (diff)
portlet structure. externalize js init code
Diffstat (limited to 'templates/program')
-rw-r--r--templates/program/day_schedule.html22
1 files changed, 10 insertions, 12 deletions
diff --git a/templates/program/day_schedule.html b/templates/program/day_schedule.html
index a9ac023..a260809 100644
--- a/templates/program/day_schedule.html
+++ b/templates/program/day_schedule.html
@@ -4,16 +4,24 @@
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://jquery-ui.googlecode.com/svn/trunk/ui/i18n/jquery.ui.datepicker-de.js"></script>
+ <script type="text/javascript" src="/site_media/programcalendar.js"></script>
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/themes/base/jquery-ui.css" rel="stylesheet" />
</head>
<body>
-<div id="calendar"></div>
+<dl id="box_calendar" class="portlet calendar">
+ <dt class="portletHeader"><span>Kalender<span></dt>
+ <dd class="portletItem">
+ <div id="calendar"></div>
+ </dd>
+</dl>
{% load content_boxes %}
<div id="filter-format">
{% broadcastformat %}
</div>
+
+{% comment %}
<div id="filter-topic">
<dl id="filter-header" class="portlet">
<dt class="portletHeader"><span>Filter</span></dt>
@@ -22,6 +30,7 @@
{% showinformation %}
{% showtopic %}
</div>
+{% endcomment %}
<div id="content-main" class="day-schedule">
<h2>Tagesansicht</h2>
@@ -97,16 +106,5 @@
</div>
</div>
-<script>
- $(function() {
- $("#calendar").datepicker({
- defaultDate: location.href.split('/').slice(4, 7).reverse().join('.'),
- onSelect: function(dateText, inst) {
- location = '/program/' + dateText.split('.').reverse().join('/');
- }
- });
- })
-</script>
-
</body>
</html>