Bug 37484: Add data-order attribute to housebound delivery table
To test: 0. APPLY PATCH 1. Enable the HouseboundModule and set at least one staff person a Chooser and and Deliverer. 2. From a patron account go to the "Housebound" tab and schedule some deliveries. 3. See that each <td> in the Date column now includes a 'data-order' attribute in an ISO date format ( 2024-07-01 ) for better sorting. Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
e96a334aa8
commit
373c5e1dd9
1 changed files with 1 additions and 1 deletions
|
@ -402,7 +402,7 @@
|
|||
[% FOREACH entry IN housebound_visits %]
|
||||
<tr>
|
||||
<td>[% entry.id | html %]</td>
|
||||
<td>[% entry.appointment_date | $KohaDates %] ([% entry.day_segment | html %])</td>
|
||||
<td data-order="[% entry.appointment_date | html %]">[% entry.appointment_date | $KohaDates %] ([% entry.day_segment | html %])</td>
|
||||
<td>
|
||||
<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% entry.chooser.borrowernumber | uri %]">
|
||||
[% INCLUDE 'patron-title.inc' patron = entry.chooser invert_name = 0 %]
|
||||
|
|
Loading…
Reference in a new issue