Bug 7720: add options for controlling display of an item's home and/or holdings location
[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 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 different 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: %s").format(exception_holidays[dateString].title)];
120         } else if ( week_days[weekDay] != null ){
121             return [true, "repeatableweekly", _("Weekly holiday: %s").format(week_days[weekDay].title)];
122         } else if ( day_month_holidays[dayMonth] != null ) {
123             return [true, "repeatableyearly", _("Yearly holiday: %s").format(day_month_holidays[dayMonth].title)];
124         } else if (holidays[dateString] != null) {
125             return [true, "holiday", _("Single holiday: %s").format(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             <li>
274                 <label for="showDescription">Description:</label>
275                 <textarea rows="2" cols="40" id="showDescription" name="showDescription"></textarea>
276             </li>
277             <li class="radio"><div id="exceptionPosibility" style="position:static">
278                 <input type="radio" name="showOperation" id="showOperationExc" value="exception" /> <label for="showOperationExc">Generate an exception for this repeated holiday.</label>
279                 <a href="#" class="helptext">[?]</a>
280                 <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>
281             </div></li>
282             <li class="radio"><input type="radio" name="showOperation" id="showOperationExcRange" value="exceptionrange" />
283                 <label for="showOperationExcRange">Generate exceptions on a range of dates.</label>
284                 <a href="#" class="helptext">[?]</a>
285                 <div class="hint">You can make an exception on a range of dates repeated yearly.</div>
286             </li>
287             <li class="radio"><input type="radio" name="showOperation" id="showOperationDel" value="delete" /> <label for="showOperationDel" id="showOperationDelLabel">Delete this holiday</label>
288                 <a href="#" class="helptext">[?]</a>
289                 <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>
290             <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>.
291                 <a href="#" class="helptext">[?]</a>
292                 <div class="hint">This will delete the single holidays rules only. The repeatable holidays and exceptions will not be deleted.</div>
293             </li>
294             <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>.
295                 <a href="#" class="helptext">[?]</a>
296                 <div class="hint">This will delete the repeated holidays rules only. The repeatable holidays will be deleted but not the exceptions.</div>
297             </li>
298             <li class="radio"><input type="radio" name="showOperation" id="showOperationDelRangeRepeatExcept" value="deleterangerepeatexcept" /> <label for="showOperationDelRangeRepeatExcept" id="showOperationDelLabelRangeRepeatExcept">Delete the exceptions on a range</label>.
299                 <a href="#" class="helptext">[?]</a>
300                 <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>
301             </li>
302             <li class="radio"><input type="radio" name="showOperation" id="showOperationEdit" value="edit" checked="checked" /> <label for="showOperationEdit">Edit this holiday</label>
303                 <a href="#" class="helptext">[?]</a>
304                 <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>
305             </ol>
306             <fieldset class="action">
307                 <input type="submit" name="submit" value="Save" />
308                 <a href="#" class="cancel" onclick=" hidePanel('showHoliday');">Cancel</a>
309             </fieldset>
310             </fieldset>
311         </form>
312     </div>
313
314     <!-- ***************************** Panel to deal with new holidays **********************  -->
315     <div class="panel" id="newHoliday">
316          <form action="/cgi-bin/koha/tools/newHolidays.pl" method="post">
317                 <input type="hidden" name="branchCodes" id="branchCodes" value="[% branchcodes %]" /> 
318             <fieldset class="brief">
319             <h3>Add new holiday</h3>
320             <ol>
321             <li>
322                 <strong>Library:</strong>
323                 <span id="newBranchNameOutput"></span>
324                 <input type="hidden" id="newBranchName" name="newBranchName" />
325             </li>
326             <li>
327                 <strong>From date:</strong>
328                 <span id="newDaynameOutput"></span>, 
329
330                          [% 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 %]
331
332                 <input type="hidden" id="newDayname" name="showDayname" />
333                 <input type="hidden" id="newWeekday" name="newWeekday" />
334                 <input type="hidden" id="newDay" name="newDay" />
335                 <input type="hidden" id="newMonth" name="newMonth" />
336                 <input type="hidden" id="newYear" name="newYear" />
337             </li>
338             <li class="dateinsert">
339                 <b>To date : </b>
340                 <input type="text" id="dateofrange" name="dateofrange" size="20" value="[% dateofrange %]" class="datepicker" />
341             </li>
342             <li><label for="title">Title: </label><input type="text" name="newTitle" id="title" size="35" /></li>
343             <li><label for="newDescription">Description:</label>
344                 <textarea rows="2" cols="40" id="newDescription" name="newDescription"></textarea>
345             </li>
346             <li class="radio"><input type="radio" name="newOperation" id="newOperationOnce" value="holiday" checked="checked" />
347             <label for="newOperationOnce">Holiday only on this day</label>.
348             <a href="#" class="helptext">[?]</a>
349             <div class="hint">Make a single holiday. For example, selecting August 1, 2012 will make it a holiday, but will not affect August 1 in other years.</div>
350             </li>
351             <li class="radio"><input type="radio" name="newOperation" id="newOperationDay" value="weekday" />
352                             <label for="newOperationDay">Holiday repeated every same day of the week</label>.
353                             <a href="#" class="helptext">[?]</a>
354                             <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>
355                             </li>
356             <li class="radio"><input type="radio" name="newOperation" id="newOperationYear" value="repeatable" />
357                             <label for="newOperationYear">Holiday repeated yearly on the same date</label>.
358                             <a href="#" class="helptext">[?]</a>
359                             <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 1 will make August 1 a holiday every year.</div>
360                             </li>
361             <li class="radio"><input type="radio" name="newOperation" id="newOperationField" value="holidayrange" />
362                             <label for="newOperationField">Holidays on a range</label>.
363                             <a href="#" class="helptext">[?]</a>
364                             <div class="hint">Make a single holiday on a range. For example, selecting August 1, 2012  and August 10, 2012 will make all days between August 1 and 10 a holiday, but will not affect August 1-10 in other years.</div>
365                             </li>
366             <li class="radio"><input type="radio" name="newOperation" id="newOperationFieldyear" value="holidayrangerepeat" />
367                             <label for="newOperationFieldyear">Holidays repeated yearly on a range</label>.
368                             <a href="#" class="helptext">[?]</a>
369                             <div class="hint">Make a single holiday on a range repeated yearly. For example, selecting August 1, 2012  and August 10, 2012 will make all days between August 1 and 10 a holiday, and will affect August 1-10 in other years.</div>
370                             </li>
371                 <li class="radio">
372                 <input type="checkbox" name="allBranches" id="allBranches" />
373                 <label for="allBranches">Copy to all libraries</label>.
374                 <a href="#" class="helptext">[?]</a>
375                 <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>
376                 </li></ol>
377                 <fieldset class="action">
378                     <input type="submit" name="submit" value="Save" />
379                     <a href="#" class="cancel" onclick=" hidePanel('newHoliday');">Cancel</a>
380                 </fieldset>
381                 </fieldset>
382          </form>
383     </div>
384
385     <!-- *************************************************************************************** -->
386     <!-- ******                          END OF FLAT PANELS                               ****** -->
387     <!-- *************************************************************************************** -->
388
389 <!-- ************************************************************************************** -->
390 <!-- ******                              MAIN SCREEN CODE                            ****** -->
391 <!-- ************************************************************************************** -->
392 <h3>Calendar information</h3>
393 <div id="jcalendar-container"></div>
394
395 <div style="margin-top: 2em;">
396 <form action="copy-holidays.pl" method="post">
397     <input type="hidden" name="from_branchcode" value="[% branch %]" />
398   <label for="branchcode">Copy holidays to:</label>
399   <select id="branchcode" name="branchcode">
400     <option value=""></option>
401     [% FOREACH branchloo IN branchloop %]
402     <option value="[% branchloo.value %]">[% branchloo.branchname %]</option>
403     [% END %]
404   </select>
405     <input type="submit" value="Copy" />
406 </form>
407 </div>
408
409 </div>
410 <div class="yui-u">
411 <div class="help">
412 <h4>Hints</h4>
413     <ul>
414         <li>Search in the calendar the day you want to set as holiday.</li>
415         <li>Click the date to add or edit a holiday.</li>
416         <li>Enter a title and description for the holiday.</li>
417         <li>Specify how the holiday should repeat.</li>
418         <li>Click Save to finish.</li>
419     </ul>
420 <h4>Key</h4>
421     <p>
422         <span class="key normalday">Working day</span>
423         <span class="key holiday">Unique holiday</span>
424         <span class="key repeatableweekly">Holiday repeating weekly</span>
425         <span class="key repeatableyearly">Holiday repeating yearly</span>
426         <span class="key exception">Holiday exception</span>
427     </p>
428 </div>
429 <div id="holiday-list">
430 <!-- Exceptions First -->
431 <!--   this will probably always have the least amount of data -->
432 [% IF ( EXCEPTION_HOLIDAYS_LOOP ) %]
433 <h3>Exceptions</h3>
434   <table id="holidayexceptions">
435 <thead><tr>
436   <th class="exception">Date</th>
437   <th class="exception">Title</th>
438   <th class="exception">Description</th>
439 </tr>
440 </thead>
441 <tbody>
442   [% FOREACH EXCEPTION_HOLIDAYS_LOO IN EXCEPTION_HOLIDAYS_LOOP %]
443   <tr>
444   <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>
445   <td>[% EXCEPTION_HOLIDAYS_LOO.TITLE %]</td>
446   <td>[% EXCEPTION_HOLIDAYS_LOO.DESCRIPTION %]</td> 
447   </tr>
448   [% END %] 
449 </tbody>
450 </table>
451 [% END %]
452
453 [% IF ( WEEK_DAYS_LOOP ) %]
454 <h3>Weekly - Repeatable Holidays</h3>
455 <table id="holidayweeklyrepeatable">
456 <thead>
457 <tr>
458   <th class="repeatableweekly">Day of week</th>
459   <th class="repeatableweekly">Title</th>
460   <th class="repeatableweekly">Description</th>
461 </tr>
462 </thead>
463 <tbody>
464   [% FOREACH WEEK_DAYS_LOO IN WEEK_DAYS_LOOP %]
465   <tr>
466   <td>
467 <script type="text/javascript">
468   document.write(weekdays[ [% WEEK_DAYS_LOO.KEY %]]);
469 </script>
470   </td> 
471   <td>[% WEEK_DAYS_LOO.TITLE %]</td> 
472   <td>[% WEEK_DAYS_LOO.DESCRIPTION %]</td> 
473   </tr>
474   [% END %] 
475 </tbody>
476 </table>
477 [% END %]
478
479 [% IF ( DAY_MONTH_HOLIDAYS_LOOP ) %]
480 <h3>Yearly - Repeatable Holidays</h3>
481 <table id="holidaysyearlyrepeatable">
482 <thead>
483 <tr>
484   [% IF ( dateformat == "metric" ) %]
485   <th class="repeatableyearly">Day/Month</th>
486   [% ELSE %]
487   <th class="repeatableyearly">Month/Day</th>
488   [% END %]
489   <th class="repeatableyearly">Title</th>
490   <th class="repeatableyearly">Description</th>
491 </tr>
492 </thead>
493 <tbody>
494   [% FOREACH DAY_MONTH_HOLIDAYS_LOO IN DAY_MONTH_HOLIDAYS_LOOP %]
495   <tr>
496   <td><span title="[% DAY_MONTH_HOLIDAYS_LOO.DATE_SORT %]">[% DAY_MONTH_HOLIDAYS_LOO.DATE %]</span></td>
497   <td>[% DAY_MONTH_HOLIDAYS_LOO.TITLE %]</td> 
498   <td>[% DAY_MONTH_HOLIDAYS_LOO.DESCRIPTION %]</td> 
499   </tr>
500   [% END %] 
501 </tbody>
502 </table>
503 [% END %]
504
505 [% IF ( HOLIDAYS_LOOP ) %]
506 <h3>Unique Holidays</h3>
507 <table id="holidaysunique">
508 <thead>
509 <tr>
510   <th class="holiday">Date</th>
511   <th class="holiday">Title</th>
512   <th class="holiday">Description</th>
513 </tr>
514 </thead>
515 <tbody>
516     [% FOREACH HOLIDAYS_LOO IN HOLIDAYS_LOOP %]
517 <tr>
518   <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>
519   <td>[% HOLIDAYS_LOO.TITLE %]</td>
520   <td>[% HOLIDAYS_LOO.DESCRIPTION %]</td>
521 </tr>
522   [% END %] 
523 </tbody>
524 </table>
525 [% END %]
526 </div>
527 </div>
528 </div>
529 </div>
530 </div>
531
532 <div class="yui-b noprint">
533 [% INCLUDE 'tools-menu.inc' %]
534 </div>
535 </div>
536 [% INCLUDE 'intranet-bottom.inc' %]