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