From d28b6e23e5cd23e0efdd187c9ae555cd5cc8005c Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 19 Dec 2013 12:47:02 -0500 Subject: [PATCH] Bug 10995 - Accessibility: Allow manual entry of renewal date and specific due date in circ From Katrin Fischer: In 3.12 it's no longer possible to enter dates manually as specific due date and renewal date in the patron account in circulation. This is a big accessibility problem as not everyone can use the datepickers for filling those fields. We have a library where this is a blocker. Test Plan: 1) Apply this patch 2) Start checking out a patron 3) Note when you click the due date field, the calendar pops up, but you can now edit the field by hand as well --- .../prog/en/modules/circ/circulation.tt | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index 3596767..64a5652 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -490,8 +490,12 @@ No patron matched [% message %] [% IF ( SpecifyDueDate ) %]
Specify due date [% INCLUDE 'date-format.inc' %]:
- [% IF ( duedatespec ) %][% ELSE %] -[% END %] + [% IF ( duedatespec ) %] + + [% ELSE %] + + [% END %] + [% IF ( stickyduedate ) %] -- 1.7.2.5