From eff1b279e53564013558a6454af0fd6780fd23d4 Mon Sep 17 00:00:00 2001 From: Garry Collum Date: Tue, 12 May 2009 16:53:15 -0400 Subject: [PATCH] Bug 1440: Show a list of holidays. Second patch. Fixed XHTML error that was introduced in the first patch. Added zebra striping to the tables. Removed an erroneous line with a date experiment that had no affect on the dates. Signed-off-by: Galen Charlton --- .../prog/en/modules/tools/holidays.tmpl | 107 ++++++++++++++++++ 1 file changed, 107 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tmpl index 73aedce34f..46c8c1aa32 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tmpl @@ -105,6 +105,18 @@ $("#branch").change(function(){ changeBranch(); }); + $("#holidayexceptions").tablesorter({ + sortList: [[0,0]], widgets: ['zebra'] + }); + $("#holidayweeklyrepeatable").tablesorter({ + sortList: [[0,0]], widgets: ['zebra'] + }); + $("#holidaysyearlyrepeatable").tablesorter({ + sortList: [[0,0]], widgets: ['zebra'] + }); + $("#holidaysunique").tablesorter({ + sortList: [[0,0]], widgets: ['zebra'] + }); }); //]]> @@ -334,6 +346,101 @@ h1 select { width: 20em; } } ); + +
+ + + +

Exceptions

+ + + + + + + + + + + + + + + + +
Year/Month/DayTitleDescription
+ + + +

Weekly - Repeatable Holidays

+ + + + + + + + + + + + + + + + + +
Day of WeekTitleDescription
+ +
+ + + +

Yearly - Repeatable Holidays

+ + + + + + + + + + + + + + + + + +
Month/DayTitleDescription
+ + + +

Unique Holidays

+ + + + + + + + + + + + + + + + + +
Year/Month/DayTitleDescription
+ +
-- 2.39.5