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