Bug 15395: Allow correct handling of plural translation
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / circ-menu.inc
blob8f76a9fe68e7b28c4ee5460d5472c5f97acf9806
1 [% USE Koha %]
2 [% USE KohaDates %]
3 [% IF ( patron.borrowernumber ) %]
4 <div class="patroninfo"><h5>[% INCLUDE 'patron-title.inc' %]</h5>
5 <input type="hidden" id="hiddenborrowernumber" value="[% patron.borrowernumber | html %]">
6 <input type="hidden" id="hiddenborrowername" value="[% patron.surname | html %] [% patron.firstname | html %]">
7 <input type="hidden" id="hiddenborrowercard" value="[% patron.cardnumber | html %]">
8 <!--[if IE 6]>
9 <style type="tex/css">img { width: expression(this.width > 140 ? 140: true);
10 }</style>
11 <![endif]-->
12 <ul class="patronbriefinfo">
13     [% IF ( patronimages ) %]
14         [% IF ( patron.image ) %]
15             <li>
16                 <img src="/cgi-bin/koha/members/patronimage.pl?borrowernumber=[% patron.borrowernumber | uri %]" id="patronimage" alt="[% patron.firstname | html %] [% patron.surname | html %] ([% patron.cardnumber | html %])" />
17             </li>
18         [% ELSE %]
19             <li id="patronbasics">
20                 <div></div>
21             </li>
22         [% END %]
23     [% END %]
24     [% IF !(Koha.Preference('HidePersonalPatronDetailOnCirculation')) %]
25         [% SWITCH Koha.Preference( 'AddressFormat' ) %]
26             [% CASE 'de' %]
27                 [% INCLUDE 'member-display-address-style-de.inc' %]
28             [% CASE # us %]
29                 [% INCLUDE 'member-display-address-style-us.inc' %]
30         [% END %]
32         [% IF ( patron.phone || patron.mobile || patron.phonepro ) %]<li class="patronphone">
33         [% IF ( patron.phone ) %]
34             <a href="tel:[% patron.phone | url %]">[% patron.phone | html %]</a>
35         [% ELSE %]
36             [% IF ( patron.mobile ) %]
37                 <a href="tel:[% patron.mobile | url %]">[% patron.mobile | html %]</a>
38             [% ELSE %]
39                 [% IF ( patron.phonepro ) %]
40                     <a href="tel:[% patron.phonepro | url %]">[% patron.phonepro | html %]</a>
41                 [% END %]
42             [% END %]
43         [% END %]</li>[% END %]
44         [% IF ( patron.email ) %]
45             <li class="email"> <a href="mailto:[% patron.email | url %]" title="[% patron.email | html %]">[% patron.email | html %]</a></li>
46         [% ELSE %]
47             [% IF ( patron.emailpro ) %]
48                 <li class="email"> <a href="mailto:[% patron.emailpro | url %]" title="[% patron.emailpro | html %]">[% patron.emailpro | html %]</a></li>
49             [% END %]
50         [% END %]
52         [% UNLESS ( patron.address or patron.address2 ) %]
53             <li><span class="empty" id="noaddressstored">No address stored.</span></li>
54         [% END %]
55         [% UNLESS ( patron.city ) %]
56             <li><span class="empty" id="nocitystored">No city stored.</span></li>
57         [% END %]
58         [% UNLESS ( patron.phone or patron.mobile or patron.phonepro) %]
59             <li> <span class="empty">No phone stored.</span></li>
60         [% END %]
61         [% UNLESS ( patron.email or patron.emailpro) %]
62             <li> <span class="empty">No email stored.</span></li>
63         [% END %]
64     [% END %]
66     [% IF ( ExtendedPatronAttributes ) %][% FOREACH extendedattribute IN extendedattributes %]
67         [% IF ( extendedattribute.display_checkout ) %]
68             [% IF ( extendedattribute.value ) %]
69                 <li class="patronattribute"><span class="patronattributelabel">[% extendedattribute.description | html %]</span> : [% IF ( extendedattribute.value_description ) %][% extendedattribute.value_description | html %][% ELSE %][% extendedattribute.value | html %][% END %]</li>
70             [% END %]
71         [% END %]
72     [% END %][% END %]
73     <li class="patroncategory">Category: [% patron.category.description | html %] ([% patron.categorycode | html %])</li>
74     <li class="patronlibrary">Home library: [% Branches.GetName( patron.branchcode ) | html %]</li>
75     <li class="patronborrowernumber">Borrowernumber: [% patron.borrowernumber | html %]</li>
76     <li><span class="patronupdatedon">Updated on [% patron.updated_on | $KohaDates with_hours => 1 %]</span></li>
77   </ul></div>
78 <div id="menu">
79 <ul>
80     [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
81         [% IF ( circview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% patron.borrowernumber | uri %]">Check out</a></li>
82         [% IF Koha.Preference('BatchCheckouts') && Koha.Preference('BatchCheckoutsValidCategories').split('\|').grep('^' _ patron.categorycode _ '$').size > 0 %]
83           [% IF ( batch_checkout_view ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% patron.borrowernumber | uri %]&amp;batch=1">Batch check out</a></li>
84         [% END %]
85     [% END %]
86     [% IF CAN_user_borrowers_edit_borrowers %]
87         [% IF ( detailview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">Details</a></li>
88     [% END %]
89     [% IF ( CAN_user_updatecharges ) %]
90         [% IF ( finesview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% patron.borrowernumber | uri %]">Fines</a></li>
91     [% END %]
92     [% IF ( CAN_user_circulate_circulate_remaining_permissions  )  %]
93         [% IF Koha.Preference("RoutingSerials") %][% IF ( routinglistview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/routing-lists.pl?borrowernumber=[% patron.borrowernumber | uri %]">Routing lists</a></li>[% END %]
94     [% END %]
95     [% IF CAN_user_borrowers_edit_borrowers %]
96         [% IF ( intranetreadinghistory ) %]
97             [% IF ( readingrecordview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/readingrec.pl?borrowernumber=[% patron.borrowernumber | uri %]">Circulation history</a></li>
98         [% END %]
99     [% END %]
100     [% IF CAN_user_borrowers_edit_borrowers %]
101         [% IF ( intranetreadinghistory ) %]
102             [% IF ( holdshistoryview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/holdshistory.pl?borrowernumber=[% patron.borrowernumber | uri %]">Holds history</a></li>
103         [% END %]
104     [% END %]
105     [% IF ( CAN_user_tools_view_system_logs ) %]
106         [% IF ( logview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/tools/viewlog.pl?do_it=1&amp;modules=MEMBERS&amp;modules=CIRCULATION&amp;object=[% patron.borrowernumber | uri %]&amp;src=circ">Modification log</a></li>
107     [% END %]
108     [% IF CAN_user_borrowers_edit_borrowers %]
109     [% IF ( sentnotices ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/notices.pl?borrowernumber=[% patron.borrowernumber | uri %]">Notices</a></li>
110     [% END %]
111     [% IF CAN_user_borrowers_edit_borrowers %]
112         [% IF (  statisticsview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/statistics.pl?borrowernumber=[% patron.borrowernumber | uri %]">Statistics</a></li>
113     [% END %]
114     [% IF CAN_user_borrowers_edit_borrowers %]
115         [% IF ( EnableBorrowerFiles ) %]
116             [% IF ( borrower_files ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/files.pl?borrowernumber=[% patron.borrowernumber | uri %]">Files</a></li>
117         [% END %]
118     [% END %]
120     [% IF CAN_user_acquisition_suggestions_manage %]
121         [% IF ( suggestionsview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/purchase-suggestions.pl?borrowernumber=[% patron.borrowernumber | uri %]">Purchase suggestions</a></li>
122     [% END %]
123     [% IF CAN_user_borrowers_edit_borrowers && useDischarge %]
124         [% IF dischargeview %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/discharge.pl?borrowernumber=[% patron.borrowernumber | uri %]">Discharges</a></li>
125     [% END %]
126     [% IF Koha.Preference('HouseboundModule') %]
127         [% IF houseboundview %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/housebound.pl?borrowernumber=[% patron.borrowernumber | uri %]">Housebound</a></li>
128     [% END %]
129     [% IF Koha.Preference('ILLModule') && CAN_user_ill %]
130         <li><a href="/cgi-bin/koha/ill/ill-requests.pl?borrowernumber=[% patron.borrowernumber | uri %]">Interlibrary loans</a></li>
131     [% END %]
132 </ul></div>
133 [% END %]