Bug 20456: (follow-up) Fix number of subscriptions and position display
authorKatrin Fischer <katrin.fischer.83@web.de>
Sat, 21 Apr 2018 01:07:58 +0000 (01:07 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 22 Jun 2018 15:02:47 +0000 (15:02 +0000)
TT variables needed to be adjusted because of changes from bug 20400.
Also: while we want logged_in_user in OPAC, we don't want that in staff.

1) Check the right number of subscriptions is displayed on top of the table
2) check the right position number is display for the routing list

Signed-off-by: Séverine QUEUNE <severine.queune@bulac.fr>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
koha-tmpl/intranet-tmpl/prog/en/modules/members/routing-lists.tt

index c79d3bb..0a629ea 100644 (file)
 </form>
 <!-- Search Bar End -->
 
+[% SET routinglists = patron.get_routing_lists %]
 <h1>
 [% UNLESS ( routinglists ) %]
 0 subscription routing lists
-[% ELSIF ( routinglists.size() == 1 ) %]
-[% routinglists.size() %] subscription routing list
+[% ELSIF ( routinglists.count == 1 ) %]
+[% routinglists.count %] subscription routing list
 [% ELSE %]
-[% routinglists.size() %] subscription routing lists
+[% routinglists.count %] subscription routing lists
 [% END %]
 </h1>
 
 <div id="subscriptions">
 
-[% SET routinglists = logged_in_user.get_routing_lists %]
 [% IF ( routinglists ) %]
     <table id="subscriptiont">
         <thead>