@@ -, +, @@ - 2 links in the table header (select all and clear all). - Datatable on these tables --- .../prog/en/modules/serials/serials-collection.tt | 57 ++++++++++++++++---- serials/serials-collection.pl | 3 +- 2 files changed, 50 insertions(+), 10 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt @@ -1,6 +1,10 @@ [% INCLUDE 'doc-head-open.inc' %] Koha › Serials › Serial collection information for [% bibliotitle %] + [% INCLUDE 'doc-head-close.inc' %] + + + @@ -193,8 +217,9 @@ $(document).ready(function() {

[% END %] - - +
+ + [% IF ( subscriptions.size > 1 ) %] [% END %] @@ -211,8 +236,21 @@ $(document).ready(function() { [% IF ( routing ) %][% END %] - [% IF ( CAN_user_serials_receive_serials ) %][% END %] + [% IF ( CAN_user_serials_receive_serials ) %] + + [% END %] + + [% FOREACH serial IN year.serials %] [% UNLESS ( loop.odd ) %][% ELSE %][% END %] [% IF ( subscriptions.size > 1 ) %] @@ -250,17 +288,18 @@ $(document).ready(function() { [% ELSE %] [% IF ( serial.checked ) %] - + [% ELSE %] - - [% END %] + + [% END %] [% END %] [% END %] [% END %] - [% END %] -
# SubsLibrary RoutingEdit + + + Select all + + + Clear all + + +
+ [% END %] + + [% END %] --- a/serials/serials-collection.pl +++ a/serials/serials-collection.pl @@ -163,7 +163,8 @@ $template->param( subscriptioncount => $subscriptioncount, location => $locationlib, callnumber => $callnumber, - uc(C4::Context->preference("marcflavour")) => 1 + uc(C4::Context->preference("marcflavour")) => 1, + dateformatmetric => C4::Context->preference("dateformat") eq "metric" ? 1 : 0, ); output_html_with_http_headers $query, $cookie, $template->output; --