Bug 11735 - Use new DataTables include in calendar template
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / holidays.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Tools &rsaquo; [% branchname %] Calendar</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 [% INCLUDE 'calendar.inc' %]
5 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
6 [% INCLUDE 'datatables.inc' %]
7 <script language="JavaScript" type="text/javascript">
8 //<![CDATA[
9     var weekdays = new Array(_("Sundays"),_("Mondays"),_("Tuesdays"),_("Wednesdays"),_("Thursdays"),_("Fridays"),_("Saturdays"));
10
11     /* Creates all the structures to deal with all diferents kinds of holidays */
12     var week_days = new Array();
13     var holidays = new Array();
14     var holidates = new Array();
15     var exception_holidays = new Array();
16     var day_month_holidays = new Array();
17     var hola= "[% code %]";
18     [% FOREACH WEEK_DAYS_LOO IN WEEK_DAYS_LOOP %]
19     week_days["[% WEEK_DAYS_LOO.KEY %]"] = {title:"[% WEEK_DAYS_LOO.TITLE %]", description:"[% WEEK_DAYS_LOO.DESCRIPTION %]"};
20     [% END %]
21     [% FOREACH HOLIDAYS_LOO IN HOLIDAYS_LOOP %]
22     holidates.push("[% HOLIDAYS_LOO.KEY %]");
23     holidays["[% HOLIDAYS_LOO.KEY %]"] = {title:"[% HOLIDAYS_LOO.TITLE %]", description:"[% HOLIDAYS_LOO.DESCRIPTION %]"};
24
25     [% END %]
26     [% FOREACH EXCEPTION_HOLIDAYS_LOO IN EXCEPTION_HOLIDAYS_LOOP %]
27     exception_holidays["[% EXCEPTION_HOLIDAYS_LOO.KEY %]"] = {title:"[% EXCEPTION_HOLIDAYS_LOO.TITLE %]", description:"[% EXCEPTION_HOLIDAYS_LOO.DESCRIPTION %]"};
28     [% END %]
29     [% FOREACH DAY_MONTH_HOLIDAYS_LOO IN DAY_MONTH_HOLIDAYS_LOOP %]
30     day_month_holidays["[% DAY_MONTH_HOLIDAYS_LOO.KEY %]"] = {title:"[% DAY_MONTH_HOLIDAYS_LOO.TITLE %]", description:"[% DAY_MONTH_HOLIDAYS_LOO.DESCRIPTION %]"};
31     [% END %]
32
33     function holidayOperation(formObject, opType) {
34         var op = document.getElementsByName('operation');
35         op[0].value = opType;
36         formObject.submit();
37     }
38
39     // This function shows the "Show Holiday" panel //
40     function showHoliday (exceptionPosibility, dayName, day, month, year, weekDay, title, description, holidayType) {
41         $("#newHoliday").slideUp("fast");
42         $("#showHoliday").slideDown("fast");
43         $('#showDaynameOutput').html(dayName);
44         $('#showDayname').val(dayName);
45         $('#showBranchNameOutput').html($("#branch :selected").text());
46         $('#showBranchName').val($("#branch").val());
47         $('#showDayOutput').html(day);
48         $('#showDay').val(day);
49         $('#showMonthOutput').html(month);
50         $('#showMonth').val(month);
51         $('#showYearOutput').html(year);
52         $('#showYear').val(year);
53         $('#showDescription').val(description);
54         $('#showWeekday:first').val(weekDay);
55         $('#showTitle').val(title);
56         $('#showHolidayType').val(holidayType);
57
58         if (holidayType == 'exception') {
59             $("#showOperationDelLabel").html(_("Delete this exception."));
60             $("#holtype").attr("class","key exception").html(_("Holiday exception"));
61         } else if(holidayType == 'weekday') {
62             $("#showOperationDelLabel").html(_("Delete this holiday."));
63             $("#holtype").attr("class","key repeatableweekly").html(_("Holiday repeating weekly"));
64         } else if(holidayType == 'daymonth') {
65             $("#showOperationDelLabel").html(_("Delete this holiday."));
66             $("#holtype").attr("class","key repeatableyearly").html(_("Holiday repeating yearly"));
67         } else {
68             $("#showOperationDelLabel").html(_("Delete this holiday."));
69             $("#holtype").attr("class","key holiday").html(_("Unique holiday"));
70         }
71         
72         if (exceptionPosibility == 1) {
73             $("#exceptionPosibility").parent().show();
74         } else {
75             $("#exceptionPosibility").parent().hide();
76         }
77     }
78
79     // This function shows the "Add Holiday" panel //
80     function newHoliday (dayName, day, month, year, weekDay) {
81         $("#showHoliday").slideUp("fast");
82         $("#newHoliday").slideDown("fast");
83         $("#newDaynameOutput").html(dayName);
84         $("#newDayname").val(dayName);
85         $("#newBranchNameOutput").html($('#branch :selected').text());
86         $("#newBranchName").val($('#branch').val());
87         $("#newDayOutput").html(day);
88         $("#newDay").val(day);
89         $("#newMonthOutput").html(month);
90         $("#newMonth").val(month);
91         $("#newYearOutput").html(year);
92         $("#newYear").val(year);
93         $("#newWeekday:first").val(weekDay);
94     }
95
96     function hidePanel(aPanelName) {
97         $("#"+aPanelName).slideUp("fast");
98     }
99
100     function changeBranch () {
101         var branch = $("#branch option:selected").val();
102         location.href='/cgi-bin/koha/tools/holidays.pl?branch=' + branch + '&calendardate=' + "[% calendardate %]";
103     }
104
105     function Help() {
106         newin=window.open("/cgi-bin/koha/help.pl","KohaHelp",'width=600,height=600,toolbar=false,scrollbars=yes');
107     }
108
109     /* This function gives css clases to each kind of day */
110     function dateStatusHandler(date) {
111         date = new Date(date);
112         var day = date.getDate();
113         var month = date.getMonth() + 1;
114         var year = date.getFullYear();
115         var weekDay = date.getDay();
116         var dayMonth = month + '/' + day;
117         var dateString = year + '/' + month + '/' + day;
118         if (exception_holidays[dateString] != null) {
119             return [true, "exception", "Exception: "+exception_holidays[dateString].title];
120         } else if ( week_days[weekDay] != null ){
121             return [true, "repeatableweekly", "Weekly holdiay: "+week_days[weekDay].title];
122         } else if ( day_month_holidays[dayMonth] != null ) {
123             return [true, "repeatableyearly", "Yearly holdiay: "+day_month_holidays[dayMonth].title];
124         } else if (holidays[dateString] != null) {
125             return [true, "holiday", "Single holiday: "+holidays[dateString].title];
126         } else {
127             return [true, "normalday", "Normal day"];
128         }
129     }
130
131     /* This function is in charge of showing the correct panel considering the kind of holiday */
132     function dateChanged(calendar) {
133         calendar = new Date(calendar);
134         var day = calendar.getDate();
135         var month = calendar.getMonth() + 1;
136         var year = calendar.getFullYear();
137         var weekDay = calendar.getDay();
138         var dayName = weekdays[weekDay];
139         var dayMonth = month + '/' + day;
140         var dateString = year + '/' + month + '/' + day;
141             if (holidays[dateString] != null) {
142                 showHoliday(0, dayName, day, month, year, weekDay, holidays[dateString].title,     holidays[dateString].description, 'ymd');
143             } else if (exception_holidays[dateString] != null) {
144                 showHoliday(0, dayName, day, month, year, weekDay, exception_holidays[dateString].title, exception_holidays[dateString].description, 'exception');
145             } else if (week_days[weekDay] != null) {
146                 showHoliday(1, dayName, day, month, year, weekDay, week_days[weekDay].title,     week_days[weekDay].description, 'weekday');
147             } else if (day_month_holidays[dayMonth] != null) {
148                 showHoliday(1, dayName, day, month, year, weekDay, day_month_holidays[dayMonth].title, day_month_holidays[dayMonth].description, 'daymonth');
149             } else {
150                 newHoliday(dayName, day, month, year, weekDay);
151             }
152     };
153
154     $(document).ready(function() {
155
156         $(".hint").hide();
157         $("#branch").change(function(){
158             changeBranch();
159         });
160         $("#holidayweeklyrepeatable").dataTable($.extend(true, {}, dataTablesDefaults, {
161             "sDom": 't',
162             "bPaginate": false
163         }));
164         $("#holidayexceptions,#holidaysyearlyrepeatable,#holidaysunique").dataTable($.extend(true, {}, dataTablesDefaults, {
165             "sDom": 't',
166             "aoColumns": [
167                 { "sType": "title-string" },null,null
168             ],
169             "bPaginate": false
170         }));
171         $("a.helptext").click(function(){
172             $(this).parent().find(".hint").toggle(); return false;
173         });
174         $("#dateofrange").datepicker();
175         $("#datecancelrange").datepicker();
176         $("#dateofrange").each(function () { this.value = "" });
177         $("#datecancelrange").each(function () { this.value = "" });
178         $("#jcalendar-container").datepicker({
179           beforeShowDay: function(thedate) {
180             var day = thedate.getDate();
181             var month = thedate.getMonth() + 1;
182             var year = thedate.getFullYear();
183             var dateString = year + '/' + month + '/' + day;
184             return dateStatusHandler(dateString);
185             },
186         onSelect: function(dateText, inst) {
187             dateChanged($(this).datepicker("getDate"));
188         },
189         defaultDate: new Date("[% keydate %]")
190     });
191     });
192 //]]>
193 </script>
194 <style type="text/css"> .key { padding : 3px; white-space:nowrap; line-height:230%; }
195 .ui-datepicker { font-size : 150%; }
196 .ui-datepicker th, .ui-datepicker .ui-datepicker-title select { font-size : 80%; }
197 .ui-datepicker td a { padding : .5em; }
198 .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { font-size : 80%; }
199 .key { padding : 3px; white-space:nowrap; line-height:230%; }
200 .normalday { background-color :  #EDEDED; color :  Black; border : 1px solid #BCBCBC; }
201 .exception { background-color :  #b3d4ff; color :  Black; border : 1px solid #BCBCBC; }
202 .holiday {  background-color :  #ffaeae; color :  Black;  border : 1px solid #BCBCBC; }
203 .repeatableweekly {  background-color :  #FFFF99; color :  Black;  border : 1px solid #BCBCBC; }
204 .repeatableyearly {  background-color :  #FFCC66; color :  Black;  border : 1px solid #BCBCBC; }
205 td.exception a.ui-state-default { background:  #b3d4ff none; color :  Black; border : 1px solid #BCBCBC; }
206 td.holiday a.ui-state-default {  background:  #ffaeae none; color :  Black;  border : 1px solid #BCBCBC; }
207 td.repeatableweekly a.ui-state-default {  background:  #D8EFB3 none; color :  Black;  border : 1px solid #BCBCBC; }
208 td.repeatableyearly a.ui-state-default {  background:  #FFFF99 none; color :  Black;  border : 1px solid #BCBCBC; }
209 .information { z-index : 1; background-color :  #DCD2F1; width : 300px; display : none; border : 1px solid #000000; color :  #000000; font-size :  8pt; font-weight :  bold; background-color :  #FFD700; cursor :  pointer; padding : 2px; }
210 .panel { z-index : 1; display : none; border : 3px solid #CCC; padding : 3px; margin-top: .3em;  background-color: #FEFEFE; } fieldset.brief { border : 0; margin-top: 0; }
211 #showHoliday { margin : .5em 0; } h1 select { width: 20em; } div.yui-b fieldset.brief ol { font-size:100%; } div.yui-b fieldset.brief li, div.yui-b fieldset.brief li.radio  { padding:0.2em 0; } .help { margin:.3em 0;border:1px solid #EEE;padding:.3em .7em; font-size : 90%; } #holidayweeklyrepeatable, #holidaysyearlyrepeatable, #holidaysunique, #holidayexceptions { font-size : 90%; margin-bottom : 1em;} .calendar td, .calendar th, .calendar .button, .calendar tbody .day { padding : .7em; font-size: 110%; } .calendar { width: auto; border : 0; }
212 </style>
213 </head>
214 <body id="tools_holidays" class="tools">
215 [% INCLUDE 'header.inc' %]
216 [% INCLUDE 'cat-search.inc' %]
217
218 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; [% branchname %] Calendar</div>
219
220 <div id="doc3" class="yui-t1">
221    
222    <div id="bd">
223     <div id="yui-main">
224     <div class="yui-b">
225     <h2>[% branchname %] Calendar</h2>
226     <div class="yui-g">
227     <div class="yui-u first">
228         <label for="branch">Define the holidays for:</label>
229             <select id="branch" name="branch">
230                 [% FOREACH branchloo IN branchloop %]
231                     [% IF ( branchloo.selected ) %]
232                         <option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option>
233                     [% ELSE %]
234                         <option value="[% branchloo.value %]">[% branchloo.branchname %]</option>
235                     [% END %]
236                 [% END %]
237             </select>
238     
239     <!-- ******************************** FLAT PANELS ******************************************* -->
240     <!-- *****           Makes all the flat panel to deal with holidays                     ***** -->
241     <!-- **************************************************************************************** -->
242
243     <!-- ********************** Panel for showing already loaded holidays *********************** -->
244     <div class="panel" id="showHoliday">
245          <form action="/cgi-bin/koha/tools/exceptionHolidays.pl" method="post">
246              <input type="hidden" id="showHolidayType" name="showHolidayType" value="" />
247             <fieldset class="brief">
248             <h3>Edit this holiday</h3>
249             <span id="holtype"></span>
250             <ol>
251             <li>
252                 <strong>Library:</strong> <span id="showBranchNameOutput"></span>
253                 <input type="hidden" id="showBranchName" name="showBranchName" />
254             </li>
255             <li>
256                 <strong>From Date:</strong>
257                 <span id="showDaynameOutput"></span>, 
258                 
259                                 [% IF ( dateformat == "us" ) %]<span id="showMonthOutput"></span>/<span id="showDayOutput"></span>/<span id="showYearOutput"></span>[% ELSIF ( dateformat == "metric" ) %]<span id="showDayOutput"></span>/<span id="showMonthOutput"></span>/<span id="showYearOutput"></span>[% ELSE %]<span id="showYearOutput"></span>/<span id="showMonthOutput"></span>/<span id="showDayOutput"></span>[% END %]
260
261                 <input type="hidden" id="showDayname" name="showDayname" />
262                 <input type="hidden" id="showWeekday" name="showWeekday" />
263                 <input type="hidden" id="showDay" name="showDay" />
264                 <input type="hidden" id="showMonth" name="showMonth" />
265                 <input type="hidden" id="showYear" name="showYear" />
266             </li>
267             <li class="dateinsert">
268                 <b>To Date : </b>
269                 <input type="text" id="datecancelrange" name="datecancelrange" size="20" value="[% datecancelrange %]" class="datepicker"/>
270             </li>
271             <li><label for="showTitle">Title: </label><input type="text" name="showTitle" id="showTitle" size="35" /></li>
272             <!-- showTitle is necessary for exception radio button to work properly --> 
273                 <label for="showDescription">Description:</label>
274                 <textarea rows="2" cols="40" id="showDescription" name="showDescription"></textarea>    
275             </li>
276             <li class="radio"><div id="exceptionPosibility" style="position:static">
277                 <input type="radio" name="showOperation" id="showOperationExc" value="exception" /> <label for="showOperationExc">Generate an exception for this repeated holiday.</label>
278                 <a href="#" class="helptext">[?]</a>
279                 <div class="hint">You can make an exception for this holiday rule. This means that you will be able to say that for a repeatable holiday there is one day which is going to be an exception.</div>
280             </div></li>
281             <li class="radio"><input type="radio" name="showOperation" id="showOperationExcRange" value="exceptionrange" />
282                 <label for="newOperationFieldException">Generate exceptions on a range of dates.</label>
283                 <a href="#" class="helptext">[?]</a>
284                 <div class="hint">You can make an exception on a range of dates repeated yearly.</div>
285             </li>
286             <li class="radio"><input type="radio" name="showOperation" id="showOperationDel" value="delete" /> <label for="showOperationDel" id="showOperationDelLabel">Delete this holiday</label>
287                 <a href="#" class="helptext">[?]</a>
288                 <div class="hint">This will delete this holiday rule. If it is a repeatable holiday, this option checks for possible exceptions. If an exception exists, this option will remove the exception and set the date to a regular holiday.</div></li>
289             <li class="radio"><input type="radio" name="showOperation" id="showOperationDelRange" value="deleterange" /> <label for="showOperationDelRange" id="showOperationDelLabelRange">Delete the single holidays on a range</label>.
290                 <a href="#" class="helptext">[?]</a>
291                 <div class="hint">This will delete the single holidays rules only. The repeatable holidays and exceptions will not be deleted.</div>
292             </li>
293             <li class="radio"><input type="radio" name="showOperation" id="showOperationDelRangeRepeat" value="deleterangerepeat" /> <label for="showOperationDelRangeRepeat" id="showOperationDelLabelRangeRepeat">Delete the repeated holidays on a range</label>.
294                 <a href="#" class="helptext">[?]</a>
295                 <div class="hint">This will delete the repeated holidays rules only. The repeatable holidays will be deleted but not the exceptions.</div>
296             </li>
297             <li class="radio"><input type="radio" name="showOperation" id="showOperationDelRangeRepeatExcept" value="deleterangerepeatexcept" /> <label for="showOperationDelRangeRepeatExcept" id="showOperationDelLabelRangeRepeatExcept">Delete the exceptions on a range</label>.
298                 <a href="#" class="helptext">[?]</a>
299                 <div class="hint">This will delete the exceptions inside a given range. Be careful about your scope range if it is oversized you could slow down Koha.</div>
300             </li>
301             <li class="radio"><input type="radio" name="showOperation" id="showOperationEdit" value="edit" checked="checked" /> <label for="showOperationEdit">Edit this holiday</label>
302                 <a href="#" class="helptext">[?]</a>
303                 <div class="hint">This will save changes to the holiday's title and description. If the information for a repeatable holiday is modified, it affects all of the dates on which the holiday is repeated.</div></li>
304             </ol>
305             <fieldset class="action">
306                 <input type="submit" name="submit" value="Save" />
307                 <a href="#" class="cancel" name="cancel2" onclick=" hidePanel('showHoliday');">Cancel</a>
308             </fieldset>
309             </fieldset>
310         </form>
311     </div>
312
313     <!-- ***************************** Panel to deal with new holidays **********************  -->
314     <div class="panel" id="newHoliday">
315          <form action="/cgi-bin/koha/tools/newHolidays.pl" method="post">
316                 <input type="hidden" name="branchCodes" id="branchCodes" value="[% branchcodes %]" /> 
317             <fieldset class="brief">
318             <h3>Add new holiday</h3>
319             <ol>
320             <li>
321                 <strong>Library:</strong>
322                 <span id="newBranchNameOutput"></span>
323                 <input type="hidden" id="newBranchName" name="newBranchName" />
324             </li>
325             <li>
326                 <strong>From date:</strong>
327                 <span id="newDaynameOutput"></span>, 
328
329                          [% IF ( dateformat == "us" ) %]<span id="newMonthOutput"></span>/<span id="newDayOutput"></span>/<span id="newYearOutput"></span>[% ELSIF ( dateformat == "metric" ) %]<span id="newDayOutput"></span>/<span id="newMonthOutput"></span>/<span id="newYearOutput"></span>[% ELSE %]<span id="newYearOutput"></span>/<span id="newMonthOutput"></span>/<span id="newDayOutput"></span>[% END %]
330
331                 <input type="hidden" id="newDayname" name="showDayname" />
332                 <input type="hidden" id="newWeekday" name="newWeekday" />
333                 <input type="hidden" id="newDay" name="newDay" />
334                 <input type="hidden" id="newMonth" name="newMonth" />
335                 <input type="hidden" id="newYear" name="newYear" />
336             </li>
337             <li class="dateinsert">
338                 <b>To date : </b>
339                 <input type="text" id="dateofrange" name="dateofrange" size="20" value="[% dateofrange %]" class="datepicker" />
340             </li>
341             <li><label for="title">Title: </label><input type="text" name="newTitle" id="title" size="35" /></li>
342             <li><label for="newDescription">Description:</label>
343                 <textarea rows="2" cols="40" id="newDescription" name="newDescription"></textarea>
344             </li>
345             <li class="radio"><input type="radio" name="newOperation" id="newOperationOnce" value="holiday" checked="checked" />
346             <label for="newOperationOnce">Holiday only on this day</label>.
347             <a href="#" class="helptext">[?]</a>
348             <div class="hint">Make a single holiday. For example, selecting August 1st, 2012 will make it a holiday, but will not affect August 1st in other years.</div>
349             </li>
350             <li class="radio"><input type="radio" name="newOperation" id="newOperationDay" value="weekday" />
351                             <label for="newOperationDay">Holiday repeated every same day of the week</label>.
352                             <a href="#" class="helptext">[?]</a>
353                             <div class="hint">Make this weekday a holiday, every week. For example, if your library is closed on Saturdays, use this option to make every Saturday a holiday.</div>
354                             </li>
355             <li class="radio"><input type="radio" name="newOperation" id="newOperationYear" value="repeatable" />
356                             <label for="newOperationYear">Holiday repeated yearly on the same date</label>.
357                             <a href="#" class="helptext">[?]</a>
358                             <div class="hint">This will take this day and month as a reference to make it a holiday. Through this option, you can repeat this rule for every year. For example, selecting August 1st will make August 1st a holiday every year.</div>
359                             </li>
360             <li class="radio"><input type="radio" name="newOperation" id="newOperationField" value="holidayrange" />
361                             <label for="newOperationField">Holidays on a range</label>.
362                             <a href="#" class="helptext">[?]</a>
363                             <div class="hint">Make a single holiday on a range. For example, selecting August 1st, 2012  and August 10st, 2012 will make all days between 1st and 10st holiday, but will not affect August 1-10 in other years.</div>
364                             </li>
365             <li class="radio"><input type="radio" name="newOperation" id="newOperationFieldyear" value="holidayrangerepeat" />
366                             <label for="newOperationFieldyear">Holidays repeated yearly on a range</label>.
367                             <a href="#" class="helptext">[?]</a>
368                             <div class="hint">Make a single holiday on a range repeated yearly. For example, selecting August 1st, 2012  and August 10st, 2012 will make all days between 1st and 10st holiday, and will affect August 1-10 in other years.</div>
369                             </li>
370                 <li class="radio">
371                 <input type="checkbox" name="allBranches" id="allBranches" />
372                 <label for="allBranches">Copy to all libraries</label>.
373                 <a href="#" class="helptext">[?]</a>
374                 <div class="hint">If checked, this holiday will be copied to all libraries. If the holiday already exists for a library, no change is made.</div>
375                 </li></ol>
376                 <fieldset class="action">
377                     <input type="submit" name="submit" value="Save" />
378                     <a href="#" class="cancel" name="cancel2" onclick=" hidePanel('newHoliday');">Cancel</a>
379                 </fieldset>
380                 </fieldset>
381          </form>
382     </div>
383
384     <!-- *************************************************************************************** -->
385     <!-- ******                          END OF FLAT PANELS                               ****** -->
386     <!-- *************************************************************************************** -->
387
388 <!-- ************************************************************************************** -->
389 <!-- ******                              MAIN SCREEN CODE                            ****** -->
390 <!-- ************************************************************************************** -->
391 <h3>Calendar information</h3>
392 <div id="jcalendar-container"></div>
393
394 <div style="margin-top: 2em;">
395 <form action="copy-holidays.pl" method="post">
396     <input type="hidden" name="from_branchcode" value="[% branch %]" />
397   <label for="branchcode">Copy holidays to:</label>
398   <select id="branchcode" name="branchcode">
399     <option value=""></option>
400     [% FOREACH branchloo IN branchloop %]
401     <option value="[% branchloo.value %]">[% branchloo.branchname %]</option>
402     [% END %]
403   </select>
404     <input type="submit" value="Copy" />
405 </form>
406 </div>
407
408 </div>
409 <div class="yui-u">
410 <div class="help">
411 <h4>Hints</h4>
412     <ul>
413         <li>Search in the calendar the day you want to set as holiday.</li>
414         <li>Click the date to add or edit a holiday.</li>
415         <li>Enter a title and description for the holdiay.</li>
416         <li>Specify how the holiday should repeat.</li>
417         <li>Click Save to finish.</li>
418     </ul>
419 <h4>Key</h4>
420     <p>
421         <span class="key normalday">Working day</span>
422         <span class="key holiday">Unique holiday</span>
423         <span class="key repeatableweekly">Holiday repeating weekly</span>
424         <span class="key repeatableyearly">Holiday repeating yearly</span>
425         <span class="key exception">Holiday exception</span>
426     </p>
427 </div>
428 <div id="holiday-list">
429 <!-- Exceptions First -->
430 <!--   this will probably always have the least amount of data -->
431 [% IF ( EXCEPTION_HOLIDAYS_LOOP ) %]
432 <h3>Exceptions</h3>
433   <table id="holidayexceptions">
434 <thead><tr>
435   <th class="exception">Date</th>
436   <th class="exception">Title</th>
437   <th class="exception">Description</th>
438 </tr>
439 </thead>
440 <tbody>
441   [% FOREACH EXCEPTION_HOLIDAYS_LOO IN EXCEPTION_HOLIDAYS_LOOP %]
442   <tr>
443   <td><a href="/cgi-bin/koha/tools/holidays.pl?branch=[% branch %]&amp;calendardate=[% EXCEPTION_HOLIDAYS_LOO.DATE %]"><span title="[% EXCEPTION_HOLIDAYS_LOO.DATE_SORT %]">[% EXCEPTION_HOLIDAYS_LOO.DATE %]</span></a></td>
444   <td>[% EXCEPTION_HOLIDAYS_LOO.TITLE %]</td>
445   <td>[% EXCEPTION_HOLIDAYS_LOO.DESCRIPTION %]</td> 
446   </tr>
447   [% END %] 
448 </tbody>
449 </table>
450 [% END %]
451
452 [% IF ( WEEK_DAYS_LOOP ) %]
453 <h3>Weekly - Repeatable Holidays</h3>
454 <table id="holidayweeklyrepeatable">
455 <thead>
456 <tr>
457   <th class="repeatableweekly">Day of week</th>
458   <th class="repeatableweekly">Title</th>
459   <th class="repeatableweekly">Description</th>
460 </tr>
461 </thead>
462 <tbody>
463   [% FOREACH WEEK_DAYS_LOO IN WEEK_DAYS_LOOP %]
464   <tr>
465   <td>
466 <script type="text/javascript">
467   document.write(weekdays[ [% WEEK_DAYS_LOO.KEY %]]);
468 </script>
469   </td> 
470   <td>[% WEEK_DAYS_LOO.TITLE %]</td> 
471   <td>[% WEEK_DAYS_LOO.DESCRIPTION %]</td> 
472   </tr>
473   [% END %] 
474 </tbody>
475 </table>
476 [% END %]
477
478 [% IF ( DAY_MONTH_HOLIDAYS_LOOP ) %]
479 <h3>Yearly - Repeatable Holidays</h3>
480 <table id="holidaysyearlyrepeatable">
481 <thead>
482 <tr>
483   [% IF ( dateformat == "metric" ) %]
484   <th class="repeatableyearly">Day/Month</th>
485   [% ELSE %]
486   <th class="repeatableyearly">Month/Day</th>
487   [% END %]
488   <th class="repeatableyearly">Title</th>
489   <th class="repeatableyearly">Description</th>
490 </tr>
491 </thead>
492 <tbody>
493   [% FOREACH DAY_MONTH_HOLIDAYS_LOO IN DAY_MONTH_HOLIDAYS_LOOP %]
494   <tr>
495   <td><span title="[% DAY_MONTH_HOLIDAYS_LOO.DATE_SORT %]">[% DAY_MONTH_HOLIDAYS_LOO.DATE %]</span></td>
496   <td>[% DAY_MONTH_HOLIDAYS_LOO.TITLE %]</td> 
497   <td>[% DAY_MONTH_HOLIDAYS_LOO.DESCRIPTION %]</td> 
498   </tr>
499   [% END %] 
500 </tbody>
501 </table>
502 [% END %]
503
504 [% IF ( HOLIDAYS_LOOP ) %]
505 <h3>Unique Holidays</h3>
506 <table id="holidaysunique">
507 <thead>
508 <tr>
509   <th class="holiday">Date</th>
510   <th class="holiday">Title</th>
511   <th class="holiday">Description</th>
512 </tr>
513 </thead>
514 <tbody>
515     [% FOREACH HOLIDAYS_LOO IN HOLIDAYS_LOOP %]
516 <tr>
517   <td><a href="/cgi-bin/koha/tools/holidays.pl?branch=[% branch %]&amp;calendardate=[% HOLIDAYS_LOO.DATE %]"><span title="[% HOLIDAYS_LOO.DATE_SORT %]">[% HOLIDAYS_LOO.DATE %]</span></a></td>
518   <td>[% HOLIDAYS_LOO.TITLE %]</td>
519   <td>[% HOLIDAYS_LOO.DESCRIPTION %]</td>
520 </tr>
521   [% END %] 
522 </tbody>
523 </table>
524 [% END %]
525 </div>
526 </div>
527 </div>
528 </div>
529 </div>
530
531 <div class="yui-b noprint">
532 [% INCLUDE 'tools-menu.inc' %]
533 </div>
534 </div>
535 [% INCLUDE 'intranet-bottom.inc' %]