Lines 1-3
Link Here
|
|
|
1 |
[% PROCESS 'i18n.inc' %] |
1 |
[% USE Asset %] |
2 |
[% USE Asset %] |
2 |
[% USE Koha %] |
3 |
[% USE Koha %] |
3 |
[% USE Branches %] |
4 |
[% USE Branches %] |
Lines 10-18
Link Here
|
10 |
[% SET footerjs = 1 %] |
11 |
[% SET footerjs = 1 %] |
11 |
[% INCLUDE 'doc-head-open.inc' %] |
12 |
[% INCLUDE 'doc-head-open.inc' %] |
12 |
[% SET destination = "circ" %] |
13 |
[% SET destination = "circ" %] |
13 |
<title>Koha › Circulation |
14 |
<title>[% t('Koha › Circulation') %] |
14 |
[% IF patron %] |
15 |
[% IF patron %] |
15 |
› Checking out to [% INCLUDE 'patron-title.inc' invert_name = 1 no_html = 1 %] |
16 |
[% t('› Checking out to') %] [% INCLUDE 'patron-title.inc' invert_name = 1 no_html = 1 %] |
16 |
[% END %] |
17 |
[% END %] |
17 |
</title> |
18 |
</title> |
18 |
[% INCLUDE 'doc-head-close.inc' %] |
19 |
[% INCLUDE 'doc-head-close.inc' %] |
Lines 24-34
Link Here
|
24 |
[% INCLUDE 'header.inc' %] |
25 |
[% INCLUDE 'header.inc' %] |
25 |
[% INCLUDE 'circ-search.inc' %] |
26 |
[% INCLUDE 'circ-search.inc' %] |
26 |
|
27 |
|
27 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> › |
28 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">[% t('Circulation') %]</a> › |
28 |
[% IF patron %] |
29 |
[% IF patron %] |
29 |
<a href="/cgi-bin/koha/circ/circulation.pl">Checkouts</a> › [% INCLUDE 'patron-title.inc' %] |
30 |
<a href="/cgi-bin/koha/circ/circulation.pl">[% t('Checkouts') %]</a> › [% INCLUDE 'patron-title.inc' %] |
30 |
[% ELSE %] |
31 |
[% ELSE %] |
31 |
<strong>Checkouts</strong> |
32 |
<strong>[% t('Checkouts') %]</strong> |
32 |
[% END %] |
33 |
[% END %] |
33 |
</div> |
34 |
</div> |
34 |
[% IF ( $borrowers ) %] |
35 |
[% IF ( $borrowers ) %] |
Lines 50-81
Link Here
|
50 |
[% END %] |
51 |
[% END %] |
51 |
|
52 |
|
52 |
<!-- INITIAL BLOC : PARAMETERS & BORROWER INFO --> |
53 |
<!-- INITIAL BLOC : PARAMETERS & BORROWER INFO --> |
53 |
[% IF ( was_renewed ) %]<div class="dialog message">Patron's account has been renewed until [% expiry | $KohaDates %]</div>[% END %] |
54 |
[% IF ( was_renewed ) %]<div class="dialog message">[% t('Patron\'s account has been renewed until') %] [% expiry | $KohaDates %]</div>[% END %] |
54 |
|
55 |
|
55 |
[% IF autoswitched %] |
56 |
[% IF autoswitched %] |
56 |
<div id="autoswitched" class="dialog message">Patron was automatically switched by reading the patron card during checking out. Ensure you are working with the right patron.</div> |
57 |
<div id="autoswitched" class="dialog message">[% t('Patron was automatically switched by reading the patron card during checking out. Ensure you are working with the right patron.') %]</div> |
57 |
[% END %] |
58 |
[% END %] |
58 |
|
59 |
|
59 |
[% IF additional_materials %] |
60 |
[% IF additional_materials %] |
60 |
<div id="materials" class="dialog message">Note about the accompanying materials: <br /> |
61 |
<div id="materials" class="dialog message">[% t('Note about the accompanying materials:') %] <br /> |
61 |
[% additional_materials %] |
62 |
[% additional_materials %] |
62 |
</div> |
63 |
</div> |
63 |
[% END %] |
64 |
[% END %] |
64 |
|
65 |
|
65 |
[% IF ( alert.ITEM_LOST ) %] |
66 |
[% IF ( alert.ITEM_LOST ) %] |
66 |
<div class="dialog message">This item has been lost with a status of "[% alert.ITEM_LOST %]".</div> |
67 |
<div class="dialog message">[% t('This item has been lost with a status of "') %][% alert.ITEM_LOST %]".</div> |
67 |
[% END %] |
68 |
[% END %] |
68 |
|
69 |
|
69 |
[% IF ( alert.OTHER_CHARGES ) %] |
70 |
[% IF ( alert.OTHER_CHARGES ) %] |
70 |
<div class="dialog message">The patron has unpaid charges for holds, rentals etc of [% alert.OTHER_CHARGES %]</div> |
71 |
<div class="dialog message">[% t('The patron has unpaid charges for holds, rentals etc of') %] [% alert.OTHER_CHARGES %]</div> |
71 |
[% END %] |
72 |
[% END %] |
72 |
|
73 |
|
73 |
[% IF alert.HIGHHOLDS %] |
74 |
[% IF alert.HIGHHOLDS %] |
74 |
<div class="dialog message">High demand item. <b>Loan period was not shortened due to override.</b> Shortened due date would have been [% alert.HIGHHOLDS.returndate %] ([% alert.HIGHHOLDS.duration %] days).</div> |
75 |
<div class="dialog message">[% t('High demand item.') %] <b>[% t('Loan period was not shortened due to override.') %]</b> [% t('Shortened due date would have been') %] [% alert.HIGHHOLDS.returndate %] ([% alert.HIGHHOLDS.duration %] [% t('days).') %]</div> |
75 |
[% END %] |
76 |
[% END %] |
76 |
|
77 |
|
77 |
[% IF ( nopermission ) %] |
78 |
[% IF ( nopermission ) %] |
78 |
<div class="dialog alert">Staff members are not allowed to discharge borrowers, nor borrowers to request a discharge.</div> |
79 |
<div class="dialog alert">[% t('Staff members are not allowed to discharge borrowers, nor borrowers to request a discharge.') %]</div> |
79 |
[% END %] |
80 |
[% END %] |
80 |
|
81 |
|
81 |
[% IF ( NEEDSCONFIRMATION ) %] |
82 |
[% IF ( NEEDSCONFIRMATION ) %] |
Lines 83-197
Link Here
|
83 |
|
84 |
|
84 |
<div id="circ_needsconfirmation" class="dialog alert audio-alert-action"> |
85 |
<div id="circ_needsconfirmation" class="dialog alert audio-alert-action"> |
85 |
[% IF CAN_user_circulate_force_checkout %] |
86 |
[% IF CAN_user_circulate_force_checkout %] |
86 |
<h3>Please confirm checkout</h3> |
87 |
<h3>[% t('Please confirm checkout') %]</h3> |
87 |
[% ELSE %] |
88 |
[% ELSE %] |
88 |
<h3>Cannot check out</h3> |
89 |
<h3>[% t('Cannot check out') %]</h3> |
89 |
[% END %] |
90 |
[% END %] |
90 |
|
91 |
|
91 |
<ul> |
92 |
<ul> |
92 |
[%IF ( AGE_RESTRICTION ) %] |
93 |
[%IF ( AGE_RESTRICTION ) %] |
93 |
<li>Age restriction [% AGE_RESTRICTION %]. |
94 |
<li>[% t('Age restriction') %] [% AGE_RESTRICTION %]. |
94 |
[% IF CAN_user_circulate_force_checkout %] |
95 |
[% IF CAN_user_circulate_force_checkout %] |
95 |
Check out anyway? |
96 |
[% t('Check out anyway?') %] |
96 |
[% END %] |
97 |
[% END %] |
97 |
</li> |
98 |
</li> |
98 |
[% END %] |
99 |
[% END %] |
99 |
|
100 |
|
100 |
[% IF ( DEBT ) %] |
101 |
[% IF ( DEBT ) %] |
101 |
<li>The patron has a debt of [% DEBT | $Price %].</li> |
102 |
<li>[% t('The patron has a debt of') %] [% DEBT | $Price %].</li> |
102 |
[% END %] |
103 |
[% END %] |
103 |
|
104 |
|
104 |
[% IF ( DEBT_GUARANTEES ) %] |
105 |
[% IF ( DEBT_GUARANTEES ) %] |
105 |
<li>The patron's guarantees collectively have a debt of [% DEBT_GUARANTEES | $Price %].</li> |
106 |
<li>[% t('The patron\'s guarantees collectively have a debt of') %] [% DEBT_GUARANTEES | $Price %].</li> |
106 |
[% END %] |
107 |
[% END %] |
107 |
|
108 |
|
108 |
[% IF ( RENTALCHARGE && RENTALCHARGE > 0 ) %] |
109 |
[% IF ( RENTALCHARGE && RENTALCHARGE > 0 ) %] |
109 |
<li>Rental charge for this item: [% RENTALCHARGE %]</li> |
110 |
<li>[% t('Rental charge for this item:') %] [% RENTALCHARGE %]</li> |
110 |
[% END %] |
111 |
[% END %] |
111 |
|
112 |
|
112 |
[% IF ( RENEW_ISSUE ) %] |
113 |
[% IF ( RENEW_ISSUE ) %] |
113 |
<li>Item <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %]) is currently checked out to this patron. Renew?</li> |
114 |
<li>[% t('Item') %] <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %][% t(') is currently checked out to this patron.') %] [% t('Renew?') %]</li> |
114 |
[% END %] |
115 |
[% END %] |
115 |
|
116 |
|
116 |
[% IF ( RESERVE_WAITING ) %] |
117 |
[% IF ( RESERVE_WAITING ) %] |
117 |
<li>Item <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %]) has been waiting for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber %]">[% resfirstname %] [% ressurname %]</a> ([% rescardnumber %]) at [% Branches.GetName( resbranchcode ) %] since [% reswaitingdate | $KohaDates %]</li> |
118 |
<li>[% t('Item') %] <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %][% t(') has been waiting for') %] <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber %]">[% resfirstname %] [% ressurname %]</a> ([% rescardnumber %][% t(') at') %] [% Branches.GetName( resbranchcode ) %] [% t('since') %] [% reswaitingdate | $KohaDates %]</li> |
118 |
[% END %] |
119 |
[% END %] |
119 |
|
120 |
|
120 |
[% IF ( RESERVED ) %] |
121 |
[% IF ( RESERVED ) %] |
121 |
<li>Item <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %]) has been on hold for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber %]">[% resfirstname %] [% ressurname %]</a> ([% rescardnumber %]) at [% Branches.GetName( resbranchcode ) %] since [% resreservedate | $KohaDates %]</li> |
122 |
<li>[% t('Item') %] <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %][% t(') has been on hold for') %] <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber %]">[% resfirstname %] [% ressurname %]</a> ([% rescardnumber %][% t(') at') %] [% Branches.GetName( resbranchcode ) %] [% t('since') %] [% resreservedate | $KohaDates %]</li> |
122 |
[% END %] |
123 |
[% END %] |
123 |
|
124 |
|
124 |
[% IF ( ISSUED_TO_ANOTHER ) %] |
125 |
[% IF ( ISSUED_TO_ANOTHER ) %] |
125 |
<li>Item <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %]) is checked out to <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% issued_borrowernumber %]">[% issued_firstname %] [% issued_surname %]</a> ([% issued_cardnumber %]). |
126 |
<li>[% t('Item') %] <i>[% getTitleMessageIteminfo %]</i> ([% getBarcodeMessageIteminfo %][% t(') is checked out to') %] <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% issued_borrowernumber %]">[% issued_firstname %] [% issued_surname %]</a> ([% issued_cardnumber %]). |
126 |
[% IF CAN_user_circulate_force_checkout %] |
127 |
[% IF CAN_user_circulate_force_checkout %] |
127 |
Check in and check out? |
128 |
[% t('Check in and check out?') %] |
128 |
[% END %] |
129 |
[% END %] |
129 |
</li> |
130 |
</li> |
130 |
[% END %] |
131 |
[% END %] |
131 |
|
132 |
|
132 |
[% IF TOO_MANY and TOO_MANY == 'TOO_MANY_CHECKOUTS' %] |
133 |
[% IF TOO_MANY and TOO_MANY == 'TOO_MANY_CHECKOUTS' %] |
133 |
<li>Too many checked out. [% current_loan_count %] checked out, only [% max_loans_allowed %] are allowed.</li> |
134 |
<li>[% t('Too many checked out.') %] [% current_loan_count %] [% t('checked out, only') %] [% max_loans_allowed %] [% t('are allowed.') %]</li> |
134 |
[% END %] |
135 |
[% END %] |
135 |
|
136 |
|
136 |
[% IF TOO_MANY and TOO_MANY == 'TOO_MANY_ONSITE_CHECKOUTS' %] |
137 |
[% IF TOO_MANY and TOO_MANY == 'TOO_MANY_ONSITE_CHECKOUTS' %] |
137 |
<li>Too many on-site checked out. [% current_loan_count %] on-site checked out, only [% max_loans_allowed %] are allowed.</li> |
138 |
<li>[% t('Too many on-site checked out.') %] [% current_loan_count %] [% t('on-site checked out, only') %] [% max_loans_allowed %] [% t('are allowed.') %]</li> |
138 |
[% END %] |
139 |
[% END %] |
139 |
|
140 |
|
140 |
[% IF ( BORRNOTSAMEBRANCH ) %] |
141 |
[% IF ( BORRNOTSAMEBRANCH ) %] |
141 |
<li>This patron is from a different library ([% Branches.GetName( BORRNOTSAMEBRANCH ) %])</li> |
142 |
<li>[% t('This patron is from a different library (') %][% Branches.GetName( BORRNOTSAMEBRANCH ) %])</li> |
142 |
[% END %] |
143 |
[% END %] |
143 |
|
144 |
|
144 |
[% IF ( PATRON_CANT ) %] |
145 |
[% IF ( PATRON_CANT ) %] |
145 |
<li>This patron can't check out this item per library circulation policy.</li> |
146 |
<li>[% t('This patron can\'t check out this item per library circulation policy.') %]</li> |
146 |
[% END %] |
147 |
[% END %] |
147 |
|
148 |
|
148 |
[% IF ( TOO_MANY and TOO_MANY == 'NO_RULE_DEFINED' ) %] |
149 |
[% IF ( TOO_MANY and TOO_MANY == 'NO_RULE_DEFINED' ) %] |
149 |
<li>No circulation rule is defined for this patron and itemtype combination.</li> |
150 |
<li>[% t('No circulation rule is defined for this patron and itemtype combination.') %]</li> |
150 |
[% END %] |
151 |
[% END %] |
151 |
|
152 |
|
152 |
[% IF ( NOT_FOR_LOAN_FORCING ) %] |
153 |
[% IF ( NOT_FOR_LOAN_FORCING ) %] |
153 |
<li> |
154 |
<li> |
154 |
[% IF ( itemtype_notforloan ) %] |
155 |
[% IF ( itemtype_notforloan ) %] |
155 |
Item type is normally not for loan. |
156 |
[% t('Item type is normally not for loan.') %] |
156 |
[% ELSIF ( item_notforloan ) %] |
157 |
[% ELSIF ( item_notforloan ) %] |
157 |
[% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, item_notforloan, 0 ) %] |
158 |
[% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, item_notforloan, 0 ) %] |
158 |
Item is normally not for loan [% IF (item_notforloan_lib) %]([% item_notforloan_lib %])[% END %]. |
159 |
[% t('Item is normally not for loan') %] [% IF (item_notforloan_lib) %]([% item_notforloan_lib %])[% END %]. |
159 |
[% END %] |
160 |
[% END %] |
160 |
[% IF CAN_user_circulate_force_checkout %] |
161 |
[% IF CAN_user_circulate_force_checkout %] |
161 |
Check out anyway? |
162 |
[% t('Check out anyway?') %] |
162 |
[% END %] |
163 |
[% END %] |
163 |
</li> |
164 |
</li> |
164 |
[% END %] |
165 |
[% END %] |
165 |
|
166 |
|
166 |
[% IF ( USERBLOCKEDOVERDUE ) %] |
167 |
[% IF ( USERBLOCKEDOVERDUE ) %] |
167 |
<li>Patron has [% USERBLOCKEDOVERDUE %] overdue item(s). |
168 |
<li>[% t('Patron has') %] [% USERBLOCKEDOVERDUE %] [% t('overdue item(s).') %] |
168 |
[% IF CAN_user_circulate_force_checkout %] |
169 |
[% IF CAN_user_circulate_force_checkout %] |
169 |
Check out anyway? |
170 |
[% t('Check out anyway?') %] |
170 |
[% END %] |
171 |
[% END %] |
171 |
</li> |
172 |
</li> |
172 |
[% END %] |
173 |
[% END %] |
173 |
|
174 |
|
174 |
[% IF ( ITEM_LOST ) %] |
175 |
[% IF ( ITEM_LOST ) %] |
175 |
<li>This item has been lost with a status of "[% ITEM_LOST %]". |
176 |
<li>[% t('This item has been lost with a status of "') %][% ITEM_LOST %]". |
176 |
[% IF CAN_user_circulate_force_checkout %] |
177 |
[% IF CAN_user_circulate_force_checkout %] |
177 |
Check out anyway? |
178 |
[% t('Check out anyway?') %] |
178 |
[% END %] |
179 |
[% END %] |
179 |
</li> |
180 |
</li> |
180 |
[% END %] |
181 |
[% END %] |
181 |
|
182 |
|
182 |
[% IF HIGHHOLDS %] |
183 |
[% IF HIGHHOLDS %] |
183 |
<li>High demand item. Loan period shortened to [% HIGHHOLDS.duration %] days (due [% HIGHHOLDS.returndate %]). Check out anyway?</li> |
184 |
<li>[% t('High demand item. Loan period shortened to') %] [% HIGHHOLDS.duration %] [% t('days (due') %] [% HIGHHOLDS.returndate %][% t('). Check out anyway?') %]</li> |
184 |
[% END %] |
185 |
[% END %] |
185 |
|
186 |
|
186 |
[% IF PREVISSUE %] |
187 |
[% IF PREVISSUE %] |
187 |
<li>Patron has previously checked out this title: <b>[% biblio.title %] [% IF biblio.author %] by [% biblio.author %][% END %]</b>. Check out anyway?</li> |
188 |
<li>[% t('Patron has previously checked out this title:') %] <b>[% biblio.title %] [% IF biblio.author %] [% t('by') %] [% biblio.author %][% END %]</b>[% t('. Check out anyway?') %]</li> |
188 |
[% END %] |
189 |
[% END %] |
189 |
|
190 |
|
190 |
[% IF BIBLIO_ALREADY_ISSUED %] |
191 |
[% IF BIBLIO_ALREADY_ISSUED %] |
191 |
<li> |
192 |
<li> |
192 |
Patron has already checked out another item from this record. |
193 |
[% t('Patron has already checked out another item from this record.') %] |
193 |
[% IF CAN_user_circulate_force_checkout %] |
194 |
[% IF CAN_user_circulate_force_checkout %] |
194 |
Check out anyway? |
195 |
[% t('Check out anyway?') %] |
195 |
[% END %] |
196 |
[% END %] |
196 |
</li> |
197 |
</li> |
197 |
[% END %] |
198 |
[% END %] |
Lines 206-240
Link Here
|
206 |
[% IF HIGHHOLDS %] |
207 |
[% IF HIGHHOLDS %] |
207 |
<p class="circ-override-high-holds"> |
208 |
<p class="circ-override-high-holds"> |
208 |
<input type="checkbox" name="override_high_holds_tmp" id="override_high_holds_tmp" value="1" /> |
209 |
<input type="checkbox" name="override_high_holds_tmp" id="override_high_holds_tmp" value="1" /> |
209 |
<label for="override_high_holds_tmp">Don't decrease loan length based on holds</label> |
210 |
<label for="override_high_holds_tmp">[% t('Don\'t decrease loan length based on holds') %]</label> |
210 |
</p> |
211 |
</p> |
211 |
[% END %] |
212 |
[% END %] |
212 |
|
213 |
|
213 |
[% IF ( RESERVED ) %] |
214 |
[% IF ( RESERVED ) %] |
214 |
<p> |
215 |
<p> |
215 |
<input type="checkbox" id="cancelreserve" name="cancelreserve" value="cancel" /> |
216 |
<input type="checkbox" id="cancelreserve" name="cancelreserve" value="cancel" /> |
216 |
<label for="cancelreserve">Cancel hold</label> |
217 |
<label for="cancelreserve">[% t('Cancel hold') %]</label> |
217 |
</p> |
218 |
</p> |
218 |
[% END %] |
219 |
[% END %] |
219 |
|
220 |
|
220 |
[% IF ( RESERVE_WAITING ) %] |
221 |
[% IF ( RESERVE_WAITING ) %] |
221 |
<p> |
222 |
<p> |
222 |
<label for="cancelreserve">Cancel hold</label> |
223 |
<label for="cancelreserve">[% t('Cancel hold') %]</label> |
223 |
<input type="radio" value="cancel" name="cancelreserve" id="cancelreserve" /><br /> |
224 |
<input type="radio" value="cancel" name="cancelreserve" id="cancelreserve" /><br /> |
224 |
<label for="revertreserve">Revert waiting status</label> |
225 |
<label for="revertreserve">[% t('Revert waiting status') %]</label> |
225 |
<input type="radio" value="revert" name="cancelreserve" id="revertreserve" checked="checked"/> |
226 |
<input type="radio" value="revert" name="cancelreserve" id="revertreserve" checked="checked" /> |
226 |
</p> |
227 |
</p> |
227 |
[% END %] |
228 |
[% END %] |
228 |
|
229 |
|
229 |
<input type="hidden" name="barcode" value="[% barcode |html %]" /> |
230 |
<input type="hidden" name="barcode" value="[% barcode |html %]" /> |
230 |
<input type="hidden" name="borrowernumber" value="[% patron.borrowernumber %]" /> |
231 |
<input type="hidden" name="borrowernumber" value="[% patron.borrowernumber %]" /> |
231 |
<input type="hidden" name="issueconfirmed" value="1" /> |
232 |
<input type="hidden" name="issueconfirmed" value="1" /> |
232 |
<input type="hidden" name="override_high_holds" value="[% override_high_holds %]"/> |
233 |
<input type="hidden" name="override_high_holds" value="[% override_high_holds %]" /> |
233 |
[% IF ( DEBT ) %]<input type="hidden" name="debt_confirmed" value="1" />[% END %] |
234 |
[% IF ( DEBT ) %]<input type="hidden" name="debt_confirmed" value="1" />[% END %] |
234 |
[% IF ( INVALID_DATE ) %] |
235 |
[% IF ( INVALID_DATE ) %] |
235 |
<p> |
236 |
<p> |
236 |
<input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec %]" /> |
237 |
<input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec %]" /> |
237 |
<label for="duedatespec">Due date</label> |
238 |
<label for="duedatespec">[% t('Due date') %]</label> |
238 |
</p> |
239 |
</p> |
239 |
[% ELSE %] |
240 |
[% ELSE %] |
240 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
241 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
Lines 242-250
Link Here
|
242 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
243 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
243 |
<input type="hidden" name="branch" value="[% branch %]" /> |
244 |
<input type="hidden" name="branch" value="[% branch %]" /> |
244 |
[% IF ( RENEW_ISSUE ) %] |
245 |
[% IF ( RENEW_ISSUE ) %] |
245 |
<button type="submit" class="approve" accesskey="y"><i class="fa fa-check"></i> Yes, renew (Y)</button> |
246 |
<button type="submit" class="approve" accesskey="y"><i class="fa fa-check"></i> [% t('Yes, renew (Y)') %]</button> |
246 |
[% ELSE %] |
247 |
[% ELSE %] |
247 |
<button type="submit" class="approve" accesskey="y"><i class="fa fa-check"></i> Yes, check out (Y)</button> |
248 |
<button type="submit" class="approve" accesskey="y"><i class="fa fa-check"></i> [% t('Yes, check out (Y)') %]</button> |
248 |
[% END %] |
249 |
[% END %] |
249 |
<input type="hidden" name="onsite_checkout" value="[% onsite_checkout %]" /> |
250 |
<input type="hidden" name="onsite_checkout" value="[% onsite_checkout %]" /> |
250 |
<input type="hidden" name="auto_renew" value="[% auto_renew %]" /> |
251 |
<input type="hidden" name="auto_renew" value="[% auto_renew %]" /> |
Lines 257-263
Link Here
|
257 |
<input type="hidden" name="borrowernumber" value="[% patron.borrowernumber %]" /> |
258 |
<input type="hidden" name="borrowernumber" value="[% patron.borrowernumber %]" /> |
258 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
259 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
259 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
260 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
260 |
<button class="print" type="submit" onclick="Dopop('hold-transfer-slip.pl?borrowernumber=[% reserveborrowernumber %]&biblionumber=[% itembiblionumber %]&itemnumber=[% item.itemnumber %]&op=slip');this.form.submit();"><i class="fa fa-print"></i> Don't check out and print slip (P)</button> |
261 |
<button class="print" type="submit" onclick="Dopop('hold-transfer-slip.pl?borrowernumber=[% reserveborrowernumber %]&biblionumber=[% itembiblionumber %]&itemnumber=[% item.itemnumber %]&op=slip');this.form.submit();"><i class="fa fa-print"></i> [% t('Don\'t check out and print slip (P)') %]</button> |
261 |
</form> |
262 |
</form> |
262 |
[% END %] |
263 |
[% END %] |
263 |
|
264 |
|
Lines 267-273
Link Here
|
267 |
<input type="hidden" name="borrowernumber" value="[% patron.borrowernumber %]" /> |
268 |
<input type="hidden" name="borrowernumber" value="[% patron.borrowernumber %]" /> |
268 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
269 |
<input type="hidden" name="duedatespec" value="[% duedatespec %]" /> |
269 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
270 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
270 |
<button class="print" type="submit" onclick="Dopop('hold-transfer-slip.pl?borrowernumber=[% reserveborrowernumber %]&biblionumber=[% itembiblionumber %]&itemnumber=[% item.itemnumber %]&op=slip');this.form.submit();"><i class="fa fa-print"></i> Don't check out and print slip (P)</button> |
271 |
<button class="print" type="submit" onclick="Dopop('hold-transfer-slip.pl?borrowernumber=[% reserveborrowernumber %]&biblionumber=[% itembiblionumber %]&itemnumber=[% item.itemnumber %]&op=slip');this.form.submit();"><i class="fa fa-print"></i> [% t('Don\'t check out and print slip (P)') %]</button> |
271 |
</form> |
272 |
</form> |
272 |
[% END %] |
273 |
[% END %] |
273 |
|
274 |
|
Lines 279-296
Link Here
|
279 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
280 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
280 |
[% IF CAN_user_circulate_force_checkout or HIGHHOLDS %] |
281 |
[% IF CAN_user_circulate_force_checkout or HIGHHOLDS %] |
281 |
[% IF ( RENEW_ISSUE ) %] |
282 |
[% IF ( RENEW_ISSUE ) %] |
282 |
<button type="submit" class="deny" accesskey="n"><i class="fa fa-times"></i> No, don't renew (N)</button> |
283 |
<button type="submit" class="deny" accesskey="n"><i class="fa fa-times"></i> [% t('No, don\'t renew (N)') %]</button> |
283 |
[% ELSE %] |
284 |
[% ELSE %] |
284 |
<button type="submit" class="deny" accesskey="n"><i class="fa fa-times"></i> No, don't check out (N)</button> |
285 |
<button type="submit" class="deny" accesskey="n"><i class="fa fa-times"></i> [% t('No, don\'t check out (N)') %]</button> |
285 |
[% END %] |
286 |
[% END %] |
286 |
[% ELSE %] |
287 |
[% ELSE %] |
287 |
<button type="submit" class="deny"><i class="fa fa-times"></i> Continue</button> |
288 |
<button type="submit" class="deny"><i class="fa fa-times"></i> [% t('Continue') %]</button> |
288 |
[% END %] |
289 |
[% END %] |
289 |
</form> |
290 |
</form> |
290 |
|
291 |
|
291 |
[% IF ( RESERVED || ISSUED_TO_ANOTHER ) && (CAN_user_reserveforothers_place_holds ) %] |
292 |
[% IF ( RESERVED || ISSUED_TO_ANOTHER ) && (CAN_user_reserveforothers_place_holds ) %] |
292 |
[% UNLESS noissues %] |
293 |
[% UNLESS noissues %] |
293 |
<button type="submit" onclick="window.location.href='/cgi-bin/koha/reserve/request.pl?biblionumber=[% itembiblionumber %]&borrowernumber=[% patron.borrowernumber %]'"><i class="fa fa-sticky-note-o"></i> Cancel checkout and place a hold for [% INCLUDE 'patron-title.inc' %]</button> |
294 |
<button type="submit" onclick="window.location.href='/cgi-bin/koha/reserve/request.pl?biblionumber=[% itembiblionumber %]&borrowernumber=[% patron.borrowernumber %]'"><i class="fa fa-sticky-note-o"></i> [% t('Cancel checkout and place a hold for') %] [% INCLUDE 'patron-title.inc' %]</button> |
294 |
[% END %] |
295 |
[% END %] |
295 |
[% END %] |
296 |
[% END %] |
296 |
</div></div> |
297 |
</div></div> |
Lines 301-333
Link Here
|
301 |
<div class="yui-g"> |
302 |
<div class="yui-g"> |
302 |
<div id="circ_impossible" class="dialog alert audio-alert-warning"> |
303 |
<div id="circ_impossible" class="dialog alert audio-alert-warning"> |
303 |
[% IF ( UNKNOWN_BARCODE ) %] |
304 |
[% IF ( UNKNOWN_BARCODE ) %] |
304 |
<h3>Barcode not found</h3> |
305 |
<h3>[% t('Barcode not found') %]</h3> |
305 |
[% END %] |
306 |
[% END %] |
306 |
<!-- RESULT OF ISSUING REQUEST --> |
307 |
<!-- RESULT OF ISSUING REQUEST --> |
307 |
<ul> |
308 |
<ul> |
308 |
[% IF ( STATS ) %] |
309 |
[% IF ( STATS ) %] |
309 |
<li>Local use recorded</li> |
310 |
<li>[% t('Local use recorded') %]</li> |
310 |
[% END %] |
311 |
[% END %] |
311 |
|
312 |
|
312 |
[% IF ( INVALID_DATE ) %] |
313 |
[% IF ( INVALID_DATE ) %] |
313 |
<li>The due date "[% INVALID_DATE %]" is invalid</li> |
314 |
<li>[% t('The due date "') %][% INVALID_DATE %][% t('" is invalid') %]</li> |
314 |
[% END %] |
315 |
[% END %] |
315 |
|
316 |
|
316 |
[% IF ( UNKNOWN_BARCODE ) %] |
317 |
[% IF ( UNKNOWN_BARCODE ) %] |
317 |
<li>The barcode was not found: <span class="ex">[% barcode |html %]</span> |
318 |
<li>[% t('The barcode was not found:') %] <span class="ex">[% barcode |html %]</span> |
318 |
|
319 |
|
319 |
<div> |
320 |
<div> |
320 |
[% IF ( FALLBACK ) %] |
321 |
[% IF ( FALLBACK ) %] |
321 |
[% IF options %] |
322 |
[% IF options %] |
322 |
<button type="button" class="approve" data-toggle="modal" data-target="#itemSearchFallback"><i class="fa fa-search"></i> Show matching titles</button> |
323 |
<button type="button" class="approve" data-toggle="modal" data-target="#itemSearchFallback"><i class="fa fa-search"></i> [% t('Show matching titles') %]</button> |
323 |
[% ELSE %] |
324 |
[% ELSE %] |
324 |
<div>No items were found by searching.</div> |
325 |
<div>[% t('No items were found by searching.') %]</div> |
325 |
[% END %] |
326 |
[% END %] |
326 |
[% END %] |
327 |
[% END %] |
327 |
|
328 |
|
328 |
[% IF ( fast_cataloging ) %] |
329 |
[% IF ( fast_cataloging ) %] |
329 |
[% IF ( CAN_user_editcatalogue_fast_cataloging ) %] |
330 |
[% IF ( CAN_user_editcatalogue_fast_cataloging ) %] |
330 |
<a class="approve" href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA&barcode=[% barcode |uri %]&circborrowernumber=[% patron.borrowernumber %]&branch=[% branch %]&duedatespec=[% duedatespec %]&stickyduedate=[% stickyduedate %]"><i class="fa fa-plus"></i> Add record using fast cataloging</a> |
331 |
<a class="approve" href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA&barcode=[% barcode |uri %]&circborrowernumber=[% patron.borrowernumber %]&branch=[% branch %]&duedatespec=[% duedatespec %]&stickyduedate=[% stickyduedate %]"><i class="fa fa-plus"></i> [% t('Add record using fast cataloging') %]</a> |
331 |
[% END %] |
332 |
[% END %] |
332 |
[% END %] |
333 |
[% END %] |
333 |
</div> |
334 |
</div> |
Lines 338-414
Link Here
|
338 |
[% IF ( NOT_FOR_LOAN ) %] |
339 |
[% IF ( NOT_FOR_LOAN ) %] |
339 |
<li> |
340 |
<li> |
340 |
[% IF ( itemtype_notforloan ) %] |
341 |
[% IF ( itemtype_notforloan ) %] |
341 |
Item type not for loan. |
342 |
[% t('Item type not for loan.') %] |
342 |
[% ELSIF ( item_notforloan ) %] |
343 |
[% ELSIF ( item_notforloan ) %] |
343 |
[% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, item_notforloan, 0 ) %] |
344 |
[% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, item_notforloan, 0 ) %] |
344 |
Item not for loan [% IF (item_notforloan_lib) %]([% item_notforloan_lib %])[% END %]. |
345 |
[% t('Item not for loan') %] [% IF (item_notforloan_lib) %]([% item_notforloan_lib %])[% END %]. |
345 |
[% END %] |
346 |
[% END %] |
346 |
</li> |
347 |
</li> |
347 |
[% END %] |
348 |
[% END %] |
348 |
|
349 |
|
349 |
[% IF ( WTHDRAWN ) %] |
350 |
[% IF ( WTHDRAWN ) %] |
350 |
<li>Item has been withdrawn</li> |
351 |
<li>[% t('Item has been withdrawn') %]</li> |
351 |
[% END %] |
352 |
[% END %] |
352 |
|
353 |
|
353 |
[% IF ( RESTRICTED ) %] |
354 |
[% IF ( RESTRICTED ) %] |
354 |
<li>Item is restricted</li> |
355 |
<li>[% t('Item is restricted') %]</li> |
355 |
[% END %] |
356 |
[% END %] |
356 |
|
357 |
|
357 |
[% IF ( GNA ) %] |
358 |
[% IF ( GNA ) %] |
358 |
<li>Patron's address is in doubt</li> |
359 |
<li>[% t('Patron\'s address is in doubt') %]</li> |
359 |
[% END %] |
360 |
[% END %] |
360 |
|
361 |
|
361 |
[% IF ( CARD_LOST ) %] |
362 |
[% IF ( CARD_LOST ) %] |
362 |
<li>Patron's card is lost</li> |
363 |
<li>[% t('Patron\'s card is lost') %]</li> |
363 |
[% END %] |
364 |
[% END %] |
364 |
|
365 |
|
365 |
[% IF ( DEBARRED ) %] |
366 |
[% IF ( DEBARRED ) %] |
366 |
<li>Patron is restricted</li> |
367 |
<li>[% t('Patron is restricted') %]</li> |
367 |
[% END %] |
368 |
[% END %] |
368 |
|
369 |
|
369 |
[% IF ( NO_MORE_RENEWALS ) %] |
370 |
[% IF ( NO_MORE_RENEWALS ) %] |
370 |
<li>No more renewals possible</li> |
371 |
<li>[% t('No more renewals possible') %]</li> |
371 |
[% END %] |
372 |
[% END %] |
372 |
|
373 |
|
373 |
[% IF NO_RENEWAL_FOR_ONSITE_CHECKOUTS %] |
374 |
[% IF NO_RENEWAL_FOR_ONSITE_CHECKOUTS %] |
374 |
<li>This item can not be renewed, it's an on-site checkout</li> |
375 |
<li>[% t('This item can not be renewed, it\'s an on-site checkout') %]</li> |
375 |
[% END %] |
376 |
[% END %] |
376 |
|
377 |
|
377 |
[%IF ( AGE_RESTRICTION ) %] |
378 |
[%IF ( AGE_RESTRICTION ) %] |
378 |
<li>Age restriction [% AGE_RESTRICTION %].</li> |
379 |
<li>[% t('Age restriction') %] [% AGE_RESTRICTION %].</li> |
379 |
[% END %] |
380 |
[% END %] |
380 |
|
381 |
|
381 |
[% IF ( EXPIRED ) %] |
382 |
[% IF ( EXPIRED ) %] |
382 |
<li>Patron's card is expired</li> |
383 |
<li>[% t('Patron\'s card is expired') %]</li> |
383 |
[% END %] |
384 |
[% END %] |
384 |
|
385 |
|
385 |
[% IF ( TOO_MANY ) %] |
386 |
[% IF ( TOO_MANY ) %] |
386 |
<li>Too many checked out. [% current_loan_count %] checked out, only [% max_loans_allowed %] are allowed.</li> |
387 |
<li>[% t('Too many checked out.') %] [% current_loan_count %] [% t('checked out, only') %] [% max_loans_allowed %] [% t('are allowed.') %]</li> |
387 |
[% END %] |
388 |
[% END %] |
388 |
|
389 |
|
389 |
[% IF ( ITEMNOTSAMEBRANCH ) %] |
390 |
[% IF ( ITEMNOTSAMEBRANCH ) %] |
390 |
<li>This item belongs to [% Branches.GetName( itemhomebranch ) %] and cannot be checked out from this location.</li> |
391 |
<li>[% t('This item belongs to') %] [% Branches.GetName( itemhomebranch ) %] [% t('and cannot be checked out from this location.') %]</li> |
391 |
[% END %] |
392 |
[% END %] |
392 |
|
393 |
|
393 |
[% IF RETURN_IMPOSSIBLE %] |
394 |
[% IF RETURN_IMPOSSIBLE %] |
394 |
<li>This item must be returned to [% Branches.GetName( branch_to_return ) %].</li> |
395 |
<li>[% t('This item must be returned to') %] [% Branches.GetName( branch_to_return ) %].</li> |
395 |
[% END %] |
396 |
[% END %] |
396 |
|
397 |
|
397 |
[% IF ( USERBLOCKEDWITHENDDATE ) %] |
398 |
[% IF ( USERBLOCKEDWITHENDDATE ) %] |
398 |
<li>Patron has a restriction until [% USERBLOCKEDWITHENDDATE | $KohaDates %].</li> |
399 |
<li>[% t('Patron has a restriction until') %] [% USERBLOCKEDWITHENDDATE | $KohaDates %].</li> |
399 |
[% END %] |
400 |
[% END %] |
400 |
|
401 |
|
401 |
[% IF ( USERBLOCKEDNOENDDATE ) %] |
402 |
[% IF ( USERBLOCKEDNOENDDATE ) %] |
402 |
<li>Patron has an indefinite restriction.</li> |
403 |
<li>[% t('Patron has an indefinite restriction.') %]</li> |
403 |
[% END %] |
404 |
[% END %] |
404 |
|
405 |
|
405 |
[% IF ( USERBLOCKEDOVERDUE ) %] |
406 |
[% IF ( USERBLOCKEDOVERDUE ) %] |
406 |
<li>Checkouts are BLOCKED because patron has overdue items.</li> |
407 |
<li>[% t('Checkouts are BLOCKED because patron has overdue items.') %]</li> |
407 |
[% END %] |
408 |
[% END %] |
408 |
</ul> |
409 |
</ul> |
409 |
|
410 |
|
410 |
[% IF (forceallow) %] |
411 |
[% IF (forceallow) %] |
411 |
<li>Restriction overridden temporarily.</li> |
412 |
<li>[% t('Restriction overridden temporarily.') %]</li> |
412 |
[% END %] |
413 |
[% END %] |
413 |
|
414 |
|
414 |
</div></div> |
415 |
</div></div> |
Lines 421-428
Link Here
|
421 |
<div class="modal-dialog modal-wide" role="document"> |
422 |
<div class="modal-dialog modal-wide" role="document"> |
422 |
<div class="modal-content"> |
423 |
<div class="modal-content"> |
423 |
<div class="modal-header"> |
424 |
<div class="modal-header"> |
424 |
<button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> |
425 |
<button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> |
425 |
<h3 id="itemSearchFallbackLabel"><h3>Barcode not found. The following items were found by searching:</h3> |
426 |
<h3 id="itemSearchFallbackLabel"><h3>[% t('Barcode not found. The following items were found by searching:') %]</h3> |
426 |
</div> |
427 |
</div> |
427 |
<div class="modal-body"> |
428 |
<div class="modal-body"> |
428 |
<table class="table_borrowers"> |
429 |
<table class="table_borrowers"> |
Lines 443-449
Link Here
|
443 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
444 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate %]" /> |
444 |
<input type="hidden" name="branch" value="[% branch %]" /> |
445 |
<input type="hidden" name="branch" value="[% branch %]" /> |
445 |
<input type="hidden" name="barcode" value="[% book.barcode %]" /> |
446 |
<input type="hidden" name="barcode" value="[% book.barcode %]" /> |
446 |
<button class="btn btn-default btn-xs" type="submit" name="x"><i class="fa fa-check"></i> Check out</button> |
447 |
<button class="btn btn-default btn-xs" type="submit" name="x"><i class="fa fa-check"></i> [% t('Check out') %]</button> |
447 |
</form> |
448 |
</form> |
448 |
</td> |
449 |
</td> |
449 |
</tr> |
450 |
</tr> |
Lines 451-457
Link Here
|
451 |
</table> |
452 |
</table> |
452 |
</div> |
453 |
</div> |
453 |
<div class="modal-footer"> |
454 |
<div class="modal-footer"> |
454 |
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> |
455 |
<button type="button" class="btn btn-default" data-dismiss="modal">[% t('Cancel') %]</button> |
455 |
</div> |
456 |
</div> |
456 |
</div> |
457 |
</div> |
457 |
</div> |
458 |
</div> |
Lines 461-480
Link Here
|
461 |
|
462 |
|
462 |
[% ELSE %] |
463 |
[% ELSE %] |
463 |
[% IF (forceallow) %] |
464 |
[% IF (forceallow) %] |
464 |
<div id="overridden_debarment" class="dialog alert">Restriction overridden temporarily</div> |
465 |
<div id="overridden_debarment" class="dialog alert">[% t('Restriction overridden temporarily') %]</div> |
465 |
[% END %] |
466 |
[% END %] |
466 |
[% END %] <!-- /impossible --> |
467 |
[% END %] <!-- /impossible --> |
467 |
|
468 |
|
468 |
<span class="audio-alert-success"></span> |
469 |
<span class="audio-alert-success"></span> |
469 |
|
470 |
|
470 |
[% IF ( issued ) %] |
471 |
[% IF ( issued ) %] |
471 |
<p>Item checked out</p> |
472 |
<p>[% t('Item checked out') %]</p> |
472 |
[% END %] |
473 |
[% END %] |
473 |
|
474 |
|
474 |
[% IF ( message ) %] |
475 |
[% IF ( message ) %] |
475 |
[% INCLUDE 'patron-toolbar.inc' %] |
476 |
[% INCLUDE 'patron-toolbar.inc' %] |
476 |
<h4> |
477 |
<h4> |
477 |
No patron matched <span class="ex">[% message | html %]</span> |
478 |
[% t('No patron matched') %] <span class="ex">[% message | html %]</span> |
478 |
</h4> |
479 |
</h4> |
479 |
[% END %] |
480 |
[% END %] |
480 |
|
481 |
|
Lines 492-498
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
492 |
<div class="yui-g"> |
493 |
<div class="yui-g"> |
493 |
|
494 |
|
494 |
[% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %] |
495 |
[% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %] |
495 |
<div class="dialog alert"><strong>Error:</strong> This patron has requested their circulation history be anonymized on check-in, but the AnonymousPatron system preference is empty or incorrect.</div> |
496 |
<div class="dialog alert"><strong>[% t('Error:') %]</strong> [% t('This patron has requested their circulation history be anonymized on check-in, but the AnonymousPatron system preference is empty or incorrect.') %]</div> |
496 |
[% END %] |
497 |
[% END %] |
497 |
|
498 |
|
498 |
[% IF ( !noissues ) || ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') )%] |
499 |
[% IF ( !noissues ) || ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') )%] |
Lines 506-522
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
506 |
<fieldset id="circ_circulation_issue"> |
507 |
<fieldset id="circ_circulation_issue"> |
507 |
[% END %] |
508 |
[% END %] |
508 |
[% IF ( DisplayClearScreenButton ) %] |
509 |
[% IF ( DisplayClearScreenButton ) %] |
509 |
<span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span> |
510 |
<span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="[% t('Clear screen') %]">[% t('x') %]</a></span> |
510 |
[% END %] |
511 |
[% END %] |
511 |
|
512 |
|
512 |
[% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %] |
513 |
[% IF (forceallow) %]<input type="hidden" name="forceallow" value="1">[% END %] |
513 |
|
514 |
|
514 |
<label class="circ_barcode" for="barcode">Checking out to [% INCLUDE 'patron-title.inc' %]</label> |
515 |
<label class="circ_barcode" for="barcode">[% t('Checking out to') %] [% INCLUDE 'patron-title.inc' %]</label> |
515 |
|
516 |
|
516 |
[% IF Koha.Preference('itemBarcodeFallbackSearch') %] |
517 |
[% IF Koha.Preference('itemBarcodeFallbackSearch') %] |
517 |
<div class="hint">Enter item barcode or keyword:</div> |
518 |
<div class="hint">[% t('Enter item barcode or keyword:') %]</div> |
518 |
[% ELSE %] |
519 |
[% ELSE %] |
519 |
<div class="hint">Enter item barcode:</div> |
520 |
<div class="hint">[% t('Enter item barcode:') %]</div> |
520 |
[% END %] |
521 |
[% END %] |
521 |
|
522 |
|
522 |
[% IF NEEDSCONFIRMATION %] |
523 |
[% IF NEEDSCONFIRMATION %] |
Lines 524-533
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
524 |
[% ELSE %] |
525 |
[% ELSE %] |
525 |
<input type="text" name="barcode" id="barcode" class="barcode focus" size="14" /> |
526 |
<input type="text" name="barcode" id="barcode" class="barcode focus" size="14" /> |
526 |
[% END %] |
527 |
[% END %] |
527 |
<button type="submit" class="btn btn-default">Check out</button> |
528 |
<button type="submit" class="btn btn-default">[% t('Check out') %]</button> |
528 |
|
529 |
|
529 |
<div id="show-checkout-settings"> |
530 |
<div id="show-checkout-settings"> |
530 |
<a href="#"><i class="fa fa-caret-right checkout-settings-icon"></i> Checkout settings</a> |
531 |
<a href="#"><i class="fa fa-caret-right checkout-settings-icon"></i> [% t('Checkout settings') %]</a> |
531 |
</div> |
532 |
</div> |
532 |
|
533 |
|
533 |
<div class="checkout-settings"> |
534 |
<div class="checkout-settings"> |
Lines 535-553
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
535 |
[% UNLESS ( noissues && Koha.Preference('OnSiteCheckoutsForce') ) %] |
536 |
[% UNLESS ( noissues && Koha.Preference('OnSiteCheckoutsForce') ) %] |
536 |
[% IF ( SpecifyDueDate ) %] |
537 |
[% IF ( SpecifyDueDate ) %] |
537 |
<div id="specify-due-date" class="checkout-setting"> |
538 |
<div id="specify-due-date" class="checkout-setting"> |
538 |
<div class="hint">Specify due date [% INCLUDE 'date-format.inc' %]: </div> |
539 |
<div class="hint">[% t('Specify due date') %] [% INCLUDE 'date-format.inc' %]: </div> |
539 |
[% IF ( duedatespec ) %] |
540 |
[% IF ( duedatespec ) %] |
540 |
<input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec %]" /> |
541 |
<input type="text" size="13" id="duedatespec" name="duedatespec" value="[% duedatespec %]" /> |
541 |
[% ELSE %] |
542 |
[% ELSE %] |
542 |
<input type="text" size="13" id="duedatespec" name="duedatespec" value="" /> |
543 |
<input type="text" size="13" id="duedatespec" name="duedatespec" value="" /> |
543 |
[% END %] |
544 |
[% END %] |
544 |
<label for="stickyduedate"> Remember for session:</label> |
545 |
<label for="stickyduedate"> [% t('Remember for session:') %]</label> |
545 |
[% IF ( stickyduedate ) %] |
546 |
[% IF ( stickyduedate ) %] |
546 |
<input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" checked="checked" /> |
547 |
<input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" checked="checked" /> |
547 |
[% ELSE %] |
548 |
[% ELSE %] |
548 |
<input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" /> |
549 |
<input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" /> |
549 |
[% END %] |
550 |
[% END %] |
550 |
<button class="btn btn-default btn-sm action" id="cleardate" name="cleardate" onclick="this.checked = false; this.form.duedatespec.value = ''; this.form.stickyduedate.checked = false; this.form.barcode.focus(); return false;" >Clear</button> |
551 |
<button class="btn btn-default btn-sm action" id="cleardate" name="cleardate" onclick="this.checked = false; this.form.duedatespec.value = ''; this.form.stickyduedate.checked = false; this.form.barcode.focus(); return false;">[% t('Clear') %]</button> |
551 |
</div> |
552 |
</div> |
552 |
[% END %] |
553 |
[% END %] |
553 |
[% END %] |
554 |
[% END %] |
Lines 560-574
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
560 |
<input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" class="circ_setting" /> |
561 |
<input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" class="circ_setting" /> |
561 |
[% END %] |
562 |
[% END %] |
562 |
|
563 |
|
563 |
<label for="auto_renew">Automatic renewal</label> |
564 |
<label for="auto_renew">[% t('Automatic renewal') %]</label> |
564 |
</div> |
565 |
</div> |
565 |
[% IF Koha.Preference('decreaseLoanHighHolds') %] |
566 |
[% IF Koha.Preference('decreaseLoanHighHolds') %] |
566 |
<div id="set_high_holds_overrride" class="checkout-setting"> |
567 |
<div id="set_high_holds_overrride" class="checkout-setting"> |
567 |
[% IF NEEDSCONFIRMATION %] |
568 |
[% IF NEEDSCONFIRMATION %] |
568 |
[% IF override_high_holds %] |
569 |
[% IF override_high_holds %] |
569 |
<input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" disabled="disabled" checked="checked"/> |
570 |
<input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" disabled="disabled" checked="checked" /> |
570 |
[% ELSE %] |
571 |
[% ELSE %] |
571 |
<input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" disabled="disabled"/> |
572 |
<input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" disabled="disabled" /> |
572 |
[% END %] |
573 |
[% END %] |
573 |
[% ELSE %] |
574 |
[% ELSE %] |
574 |
[% IF override_high_holds %] |
575 |
[% IF override_high_holds %] |
Lines 577-583
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
577 |
<input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" class="circ_setting" /> |
578 |
<input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" class="circ_setting" /> |
578 |
[% END %] |
579 |
[% END %] |
579 |
[% END %] |
580 |
[% END %] |
580 |
<label for="override_high_holds">Don't decrease checkout length based on holds</label> |
581 |
<label for="override_high_holds">[% t('Don\'t decrease checkout length based on holds') %]</label> |
581 |
</div> |
582 |
</div> |
582 |
[% END %] |
583 |
[% END %] |
583 |
[% END %] |
584 |
[% END %] |
Lines 586-597
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
586 |
<div id="onsite_checkout-select" class="checkout-setting"> |
587 |
<div id="onsite_checkout-select" class="checkout-setting"> |
587 |
[% IF noissues %] |
588 |
[% IF noissues %] |
588 |
<div class="onsite-checkout-only"> |
589 |
<div class="onsite-checkout-only"> |
589 |
<input type="checkbox" id="onsite_checkout" name="onsite_checkout_forced" checked="checked" disabled="disabled" /> <label for="onsite_checkout">On-site checkouts only. Automatic due date: </label> |
590 |
<input type="checkbox" id="onsite_checkout" name="onsite_checkout_forced" checked="checked" disabled="disabled" /> <label for="onsite_checkout">[% t('On-site checkouts only. Automatic due date:') %] </label> |
590 |
<input type="text" name="duedatespec" id="duedatespec" /> |
591 |
<input type="text" name="duedatespec" id="duedatespec" /> |
591 |
<input type="hidden" name="onsite_checkout" checked="checked" value="1" /> |
592 |
<input type="hidden" name="onsite_checkout" checked="checked" value="1" /> |
592 |
</div> |
593 |
</div> |
593 |
[% ELSE %] |
594 |
[% ELSE %] |
594 |
<input type="checkbox" id="onsite_checkout" name="onsite_checkout" class="circ_setting" /> <label for="onsite_checkout">On-site checkout</label> |
595 |
<input type="checkbox" id="onsite_checkout" name="onsite_checkout" class="circ_setting" /> <label for="onsite_checkout">[% t('On-site checkout') %]</label> |
595 |
[% END %] |
596 |
[% END %] |
596 |
</div> |
597 |
</div> |
597 |
[% END %] |
598 |
[% END %] |
Lines 608-614
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
608 |
</fieldset> |
609 |
</fieldset> |
609 |
[% IF ( issue ) %] |
610 |
[% IF ( issue ) %] |
610 |
<div class="lastchecked"> |
611 |
<div class="lastchecked"> |
611 |
<p><strong>Checked out: </strong>[% issue.item.biblioitemnumber.biblionumber.title %] ([% issue.item.barcode %]). Due on [% issue.date_due | $KohaDates %]</p> |
612 |
<p><strong>[% t('Checked out:') %] </strong>[% issue.item.biblioitemnumber.biblionumber.title %] ([% issue.item.barcode %][% t('). Due on') %] [% issue.date_due | $KohaDates %]</p> |
612 |
</div> |
613 |
</div> |
613 |
[% END %] |
614 |
[% END %] |
614 |
</form></div> |
615 |
</form></div> |
Lines 629-714
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
629 |
[% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %] |
630 |
[% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %] |
630 |
<div id="circmessages" class="circmessage attention"> |
631 |
<div id="circmessages" class="circmessage attention"> |
631 |
[% ELSE %] |
632 |
[% ELSE %] |
632 |
<h4>Checking out to [% INCLUDE 'patron-title.inc' %]</h4> |
633 |
<h4>[% t('Checking out to') %] [% INCLUDE 'patron-title.inc' %]</h4> |
633 |
<div id="circmessages" class="circmessage warning"> |
634 |
<div id="circmessages" class="circmessage warning"> |
634 |
[% END %] |
635 |
[% END %] |
635 |
<h3> |
636 |
<h3> |
636 |
Cannot check out! |
637 |
[% t('Cannot check out!') %] |
637 |
[% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %] |
638 |
[% IF ( Koha.Preference('OnSiteCheckouts') && Koha.Preference('OnSiteCheckoutsForce') ) %] |
638 |
<span class="circ-hlt">Only on-site checkouts are allowed</span> |
639 |
<span class="circ-hlt">[% t('Only on-site checkouts are allowed') %]</span> |
639 |
[% END %] |
640 |
[% END %] |
640 |
</h3> |
641 |
</h3> |
641 |
[% ELSE %] |
642 |
[% ELSE %] |
642 |
<div id="circmessages" class="circmessage attention"> |
643 |
<div id="circmessages" class="circmessage attention"> |
643 |
<h3>Attention:</h3> |
644 |
<h3>[% t('Attention:') %]</h3> |
644 |
[% END %] |
645 |
[% END %] |
645 |
|
646 |
|
646 |
<ul> |
647 |
<ul> |
647 |
|
648 |
|
648 |
[% IF ( has_modifications ) %] |
649 |
[% IF ( has_modifications ) %] |
649 |
<li><span class="circ-hlt">Pending modifications:</span> Patron has pending modifications. |
650 |
<li><span class="circ-hlt">[% t('Pending modifications:') %]</span> [% t('Patron has pending modifications.') %] |
650 |
[% IF CAN_user_borrowers_edit_borrowers && ( !Koha.Preference('IndependentBranchesPatronModifications') || borrower.branch == branch ) %] |
651 |
[% IF CAN_user_borrowers_edit_borrowers && ( !Koha.Preference('IndependentBranchesPatronModifications') || borrower.branch == branch ) %] |
651 |
<a href="/cgi-bin/koha/members/members-update.pl">View all pending patron modifications</a> |
652 |
<a href="/cgi-bin/koha/members/members-update.pl">[% t('View all pending patron modifications') %]</a> |
652 |
[% END %] |
653 |
[% END %] |
653 |
</li> |
654 |
</li> |
654 |
[% END %] |
655 |
[% END %] |
655 |
|
656 |
|
656 |
[% IF ( warndeparture ) %] |
657 |
[% IF ( warndeparture ) %] |
657 |
<li><span class="circ-hlt">Expiration:</span> Patron's card will expire soon. |
658 |
<li><span class="circ-hlt">[% t('Expiration:') %]</span> [% t('Patron\'s card will expire soon.') %] |
658 |
Patron's card expires on [% expiry | $KohaDates %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% patron.borrowernumber %]&destination=circ&reregistration=y">Renew</a> or <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=circ&borrowernumber=[% patron.borrowernumber %]&categorycode=[% categorycode %]">Edit Details</a> |
659 |
[% t('Patron\'s card expires on') %] [% expiry | $KohaDates %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% patron.borrowernumber %]&destination=circ&reregistration=y">[% t('Renew') %]</a> [% t('or') %] <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=circ&borrowernumber=[% patron.borrowernumber %]&categorycode=[% categorycode %]">[% t('Edit Details') %]</a> |
659 |
|
660 |
|
660 |
</li> |
661 |
</li> |
661 |
[% END %] |
662 |
[% END %] |
662 |
|
663 |
|
663 |
[% IF ( returnbeforeexpiry ) %] |
664 |
[% IF ( returnbeforeexpiry ) %] |
664 |
<li><span class="circ-hlt">Set due date to expiry:</span> You have the ReturnBeforeExpiry system preference enabled this means if the |
665 |
<li><span class="circ-hlt">[% t('Set due date to expiry:') %]</span> [% t('You have the ReturnBeforeExpiry system preference enabled this means if the') %] |
665 |
expiry date is before the date due, the date due will be set to the expiry date |
666 |
[% t('expiry date is before the date due, the date due will be set to the expiry date') %] |
666 |
</li> |
667 |
</li> |
667 |
[% END %] |
668 |
[% END %] |
668 |
|
669 |
|
669 |
[% IF ( expired ) %] |
670 |
[% IF ( expired ) %] |
670 |
<li><span class="circ-hlt">Expiration:</span> Patron's card has expired. |
671 |
<li><span class="circ-hlt">[% t('Expiration:') %]</span> [% t('Patron\'s card has expired.') %] |
671 |
[% IF ( expiry ) %]Patron's card expired on [% expiry | $KohaDates %][% END %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% patron.borrowernumber %]&destination=circ&reregistration=y">Renew</a> or <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=circ&borrowernumber=[% patron.borrowernumber %]&categorycode=[% categorycode %]">Edit Details</a> |
672 |
[% IF ( expiry ) %][% t('Patron\'s card expired on') %] [% expiry | $KohaDates %][% END %] <a href="/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% patron.borrowernumber %]&destination=circ&reregistration=y">[% t('Renew') %]</a> [% t('or') %] <a href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=circ&borrowernumber=[% patron.borrowernumber %]&categorycode=[% categorycode %]">[% t('Edit Details') %]</a> |
672 |
|
673 |
|
673 |
</li> |
674 |
</li> |
674 |
[% END %] |
675 |
[% END %] |
675 |
|
676 |
|
676 |
[% IF ( gna ) %] |
677 |
[% IF ( gna ) %] |
677 |
<li class="blocker"><span class="circ-hlt">Address:</span> Patron's address in doubt</li> |
678 |
<li class="blocker"><span class="circ-hlt">[% t('Address:') %]</span> [% t('Patron\'s address in doubt') %]</li> |
678 |
[% END %] |
679 |
[% END %] |
679 |
|
680 |
|
680 |
[% IF ( lost ) %] |
681 |
[% IF ( lost ) %] |
681 |
<li class="blocker"><span class="circ-hlt">Lost: </span>Patron's card is lost</li> |
682 |
<li class="blocker"><span class="circ-hlt">[% t('Lost:') %] </span>[% t('Patron\'s card is lost') %]</li> |
682 |
[% END %] |
683 |
[% END %] |
683 |
|
684 |
|
684 |
[% IF ( userdebarred ) %] |
685 |
[% IF ( userdebarred ) %] |
685 |
<li class="blocker"> |
686 |
<li class="blocker"> |
686 |
<span class="circ-hlt"> Restricted:</span> Patron's account is restricted |
687 |
<span class="circ-hlt"> [% t('Restricted:') %]</span> [% t('Patron\'s account is restricted') %] |
687 |
|
688 |
|
688 |
[% IF ( userdebarreddate ) %] |
689 |
[% IF ( userdebarreddate ) %] |
689 |
until [% userdebarreddate | $KohaDates %] |
690 |
[% t('until') %] [% userdebarreddate | $KohaDates %] |
690 |
[% END %] |
691 |
[% END %] |
691 |
|
692 |
|
692 |
[% IF ( debarredcomment ) %] |
693 |
[% IF ( debarredcomment ) %] |
693 |
with the explanation: <br/><i> |
694 |
[% t('with the explanation:') %] <br /><i> |
694 |
[% IF debarredcomment.search('OVERDUES_PROCESS') %] |
695 |
[% IF debarredcomment.search('OVERDUES_PROCESS') %] |
695 |
Restriction added by overdues process [% debarredcomment.remove('OVERDUES_PROCESS ') | html_line_break %] |
696 |
[% t('Restriction added by overdues process') %] [% debarredcomment.remove('OVERDUES_PROCESS ') | html_line_break %] |
696 |
[% ELSE %] |
697 |
[% ELSE %] |
697 |
[% debarredcomment | html_line_break %] |
698 |
[% debarredcomment | html_line_break %] |
698 |
[% END %] |
699 |
[% END %] |
699 |
</i> |
700 |
</i> |
700 |
[% END %] |
701 |
[% END %] |
701 |
<br/> |
702 |
<br /> |
702 |
<a class="btn btn-default btn-sm" href="#reldebarments" onclick="$('#debarments-tab-link').click()"><i class="fa fa-ban"></i> View restrictions</a> |
703 |
<a class="btn btn-default btn-sm" href="#reldebarments" onclick="$('#debarments-tab-link').click()"><i class="fa fa-ban"></i> [% t('View restrictions') %]</a> |
703 |
[% IF (noissues && patron && CAN_user_circulate_force_checkout) %] |
704 |
[% IF (noissues && patron && CAN_user_circulate_force_checkout) %] |
704 |
<span class="override_debarment"> |
705 |
<span class="override_debarment"> |
705 |
<a href="/cgi-bin/koha/circ/circulation.pl?forceallow=1&borrowernumber=[% patron.borrowernumber %]" class="btn btn-default btn-sm">Override restriction temporarily</a> |
706 |
<a href="/cgi-bin/koha/circ/circulation.pl?forceallow=1&borrowernumber=[% patron.borrowernumber %]" class="btn btn-default btn-sm">[% t('Override restriction temporarily') %]</a> |
706 |
</span> |
707 |
</span> |
707 |
[% END %] |
708 |
[% END %] |
708 |
</li> |
709 |
</li> |
709 |
[% END %] |
710 |
[% END %] |
710 |
|
711 |
|
711 |
[% IF ( odues ) %]<li><span class="circ-hlt">Overdues: Patron has ITEMS OVERDUE.</span> <a href="#checkouts">See highlighted items below</a></li> |
712 |
[% IF ( odues ) %]<li><span class="circ-hlt">[% t('Overdues: Patron has ITEMS OVERDUE.') %]</span> <a href="#checkouts">[% t('See highlighted items below') %]</a></li> |
712 |
[% END %] |
713 |
[% END %] |
713 |
|
714 |
|
714 |
[% IF ( charges ) %] |
715 |
[% IF ( charges ) %] |
Lines 717-725
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
717 |
|
718 |
|
718 |
[% IF ( charges_guarantees ) %] |
719 |
[% IF ( charges_guarantees ) %] |
719 |
<li> |
720 |
<li> |
720 |
<span class="circ-hlt">Fees & Charges:</span> Patron's guarantees collectively owe [% chargesamount_guarantees | $Price %]. |
721 |
<span class="circ-hlt">[% t('Fees & Charges:') %]</span> [% t('Patron\'s guarantees collectively owe') %] [% chargesamount_guarantees | $Price %]. |
721 |
[% IF noissues %] |
722 |
[% IF noissues %] |
722 |
<span class="circ-hlt">Checkouts are BLOCKED because fine balance is OVER THE LIMIT.</span> |
723 |
<span class="circ-hlt">[% t('Checkouts are BLOCKED because fine balance is OVER THE LIMIT.') %]</span> |
723 |
[% END %] |
724 |
[% END %] |
724 |
</li> |
725 |
</li> |
725 |
[% END %] |
726 |
[% END %] |
Lines 727-733
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
727 |
|
728 |
|
728 |
[% IF ( credits ) %] |
729 |
[% IF ( credits ) %] |
729 |
<li> |
730 |
<li> |
730 |
<span class="circ-hlt">Credits:</span> Patron has a credit[% IF ( creditsamount ) %] of [% creditsamount | $Price %][% END %] |
731 |
<span class="circ-hlt">[% t('Credits:') %]</span> [% t('Patron has a credit') %][% IF ( creditsamount ) %] [% t('of') %] [% creditsamount | $Price %][% END %] |
731 |
</li> |
732 |
</li> |
732 |
[% END %] |
733 |
[% END %] |
733 |
|
734 |
|
Lines 736-755
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
736 |
|
737 |
|
737 |
[% IF WaitingHolds.count %] |
738 |
[% IF WaitingHolds.count %] |
738 |
<div id="holdswaiting" class="circmessage"> |
739 |
<div id="holdswaiting" class="circmessage"> |
739 |
<h4>Holds waiting:</h4> |
740 |
<h4>[% t('Holds waiting:') %]</h4> |
740 |
[% FOREACH w IN WaitingHolds %] |
741 |
[% FOREACH w IN WaitingHolds %] |
741 |
<ul> |
742 |
<ul> |
742 |
<li> |
743 |
<li> |
743 |
<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber %]">[% w.biblio.title | html %]</a> |
744 |
<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% w.biblio.biblionumber %]">[% w.biblio.title | html %]</a> |
744 |
([% ItemTypes.GetDescription( w.item.effective_itemtype ) %]), |
745 |
([% ItemTypes.GetDescription( w.item.effective_itemtype ) %]), |
745 |
[% IF ( w.biblio.author ) %] by [% w.biblio.author | html %] [% END %] |
746 |
[% IF ( w.biblio.author ) %] [% t('by') %] [% w.biblio.author | html %] [% END %] |
746 |
[% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber %]] [% END %] |
747 |
[% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber %]] [% END %] |
747 |
Hold placed on [% w.reservedate | $KohaDates %]. |
748 |
[% t('Hold placed on') %] [% w.reservedate | $KohaDates %]. |
748 |
|
749 |
|
749 |
<br/> |
750 |
<br /> |
750 |
[% IF ( w.branch.branchcode == Branches.GetLoggedInBranchcode() ) %]<strong class="waitinghere">[% ELSE %]<strong>[% END %] |
751 |
[% IF ( w.branch.branchcode == Branches.GetLoggedInBranchcode() ) %]<strong class="waitinghere">[% ELSE %]<strong>[% END %] |
751 |
[% SET expires_on = w.expirationdate %] |
752 |
[% SET expires_on = w.expirationdate %] |
752 |
Waiting at [% w.branch.branchname | html %] [% IF expires_on %] until [% expires_on | $KohaDates %] [% END %] |
753 |
[% t('Waiting at') %] [% w.branch.branchname | html %] [% IF expires_on %] [% t('until') %] [% expires_on | $KohaDates %] [% END %] |
753 |
</strong> |
754 |
</strong> |
754 |
</li> |
755 |
</li> |
755 |
</ul> |
756 |
</ul> |
Lines 759-765
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
759 |
|
760 |
|
760 |
[% IF ( notes ) %] |
761 |
[% IF ( notes ) %] |
761 |
<div id="circnotes" class="circmessage"> |
762 |
<div id="circnotes" class="circmessage"> |
762 |
<h4>Notes:</h4> |
763 |
<h4>[% t('Notes:') %]</h4> |
763 |
<p><span class="circ-hlt">[% notesmsg %]</span></p> |
764 |
<p><span class="circ-hlt">[% notesmsg %]</span></p> |
764 |
</div> |
765 |
</div> |
765 |
|
766 |
|
Lines 767-773
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
767 |
<!-- /If notes -->[% END %] |
768 |
<!-- /If notes -->[% END %] |
768 |
|
769 |
|
769 |
<div id="messages" class="circmessage"> |
770 |
<div id="messages" class="circmessage"> |
770 |
<h4>Messages:</h4> |
771 |
<h4>[% t('Messages:') %]</h4> |
771 |
<ul> |
772 |
<ul> |
772 |
[% FOREACH message IN messages %] |
773 |
[% FOREACH message IN messages %] |
773 |
<li> |
774 |
<li> |
Lines 784-795
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
784 |
<i>"[% message.message | html %]"</i> |
785 |
<i>"[% message.message | html %]"</i> |
785 |
</span> |
786 |
</span> |
786 |
[% IF message.branchcode == branch OR Koha.Preference('AllowAllMessageDeletion') %] |
787 |
[% IF message.branchcode == branch OR Koha.Preference('AllowAllMessageDeletion') %] |
787 |
<a class="btn btn-link btn-sm" href="/cgi-bin/koha/circ/del_message.pl?message_id=[% message.message_id %]&borrowernumber=[% message.borrowernumber %]" onclick="return confirm(MSG_CONFIRM_DELETE_MESSAGE);"><i class="fa fa-trash"></i> Delete</a> |
788 |
<a class="btn btn-link btn-sm" href="/cgi-bin/koha/circ/del_message.pl?message_id=[% message.message_id %]&borrowernumber=[% message.borrowernumber %]" onclick="return confirm(MSG_CONFIRM_DELETE_MESSAGE);"><i class="fa fa-trash"></i> [% t('Delete') %]</a> |
788 |
[% END %] |
789 |
[% END %] |
789 |
</li> |
790 |
</li> |
790 |
[% END %] |
791 |
[% END %] |
791 |
</ul> |
792 |
</ul> |
792 |
<a id="addnewmessageLabel" href="#add_message_form" class="btn btn-link btn-sm" data-toggle="modal"><i class="fa fa-plus"></i> Add a new message</a> |
793 |
<a id="addnewmessageLabel" href="#add_message_form" class="btn btn-link btn-sm" data-toggle="modal"><i class="fa fa-plus"></i> [% t('Add a new message') %]</a> |
793 |
</div> |
794 |
</div> |
794 |
|
795 |
|
795 |
</div> |
796 |
</div> |
Lines 800-837
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
800 |
<ul> |
801 |
<ul> |
801 |
<li> |
802 |
<li> |
802 |
[% IF ( issuecount ) %] |
803 |
[% IF ( issuecount ) %] |
803 |
<a href="#checkouts">[% issuecount %] Checkout(s)</a> |
804 |
<a href="#checkouts">[% issuecount %] [% t('Checkout(s)') %]</a> |
804 |
[% ELSE %] |
805 |
[% ELSE %] |
805 |
<a href="#checkouts">0 Checkouts</a> |
806 |
<a href="#checkouts">[% t('0 Checkouts') %]</a> |
806 |
[% END %] |
807 |
[% END %] |
807 |
</li> |
808 |
</li> |
808 |
|
809 |
|
809 |
[% IF relatives_issues_count %] |
810 |
[% IF relatives_issues_count %] |
810 |
<li><a id="relatives-issues-tab" href="#relatives-issues">Relatives' checkouts</a></li> |
811 |
<li><a id="relatives-issues-tab" href="#relatives-issues">[% t('Relatives\' checkouts') %]</a></li> |
811 |
[% END %] |
812 |
[% END %] |
812 |
|
813 |
|
813 |
<li> |
814 |
<li> |
814 |
[% IF ( holds_count ) %] |
815 |
[% IF ( holds_count ) %] |
815 |
<a href="#reserves" id="holds-tab">[% holds_count %] Hold(s)</a> |
816 |
<a href="#reserves" id="holds-tab">[% holds_count %] [% t('Hold(s)') %]</a> |
816 |
[% ELSE %] |
817 |
[% ELSE %] |
817 |
<a href="#reserves" id="holds-tab">0 Holds</a> |
818 |
<a href="#reserves" id="holds-tab">[% t('0 Holds') %]</a> |
818 |
[% END %] |
819 |
[% END %] |
819 |
</li> |
820 |
</li> |
820 |
|
821 |
|
821 |
[% IF Koha.Preference('ArticleRequests') %] |
822 |
[% IF Koha.Preference('ArticleRequests') %] |
822 |
<li> |
823 |
<li> |
823 |
<a href="#article-requests" id="article-requests-tab"> [% patron.article_requests_current.count %] Article requests</a> |
824 |
<a href="#article-requests" id="article-requests-tab"> [% patron.article_requests_current.count %] [% t('Article requests') %]</a> |
824 |
</li> |
825 |
</li> |
825 |
[% END %] |
826 |
[% END %] |
826 |
|
827 |
|
827 |
<li><a id="debarments-tab-link" href="#reldebarments">[% debarments.count %] Restrictions</a></li> |
828 |
<li><a id="debarments-tab-link" href="#reldebarments">[% debarments.count %] [% t('Restrictions') %]</a></li> |
828 |
|
829 |
|
829 |
[% SET enrollments = patron.get_club_enrollments(1) %] |
830 |
[% SET enrollments = patron.get_club_enrollments(1) %] |
830 |
[% SET enrollable = patron.get_enrollable_clubs(0,1) %] |
831 |
[% SET enrollable = patron.get_enrollable_clubs(0,1) %] |
831 |
[% IF CAN_user_clubs && ( enrollable.count || enrollments.count ) %] |
832 |
[% IF CAN_user_clubs && ( enrollable.count || enrollments.count ) %] |
832 |
<li> |
833 |
<li> |
833 |
<a id="clubs-tab-link" href="#clubs-tab"> |
834 |
<a id="clubs-tab-link" href="#clubs-tab"> |
834 |
Clubs ([% enrollments.count %]/[% enrollable.count %]) |
835 |
[% t('Clubs (') %][% enrollments.count %]/[% enrollable.count %]) |
835 |
</a> |
836 |
</a> |
836 |
</li> |
837 |
</li> |
837 |
[% END %] |
838 |
[% END %] |
Lines 847-864
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
847 |
<table id="relatives-issues-table"> |
848 |
<table id="relatives-issues-table"> |
848 |
<thead> |
849 |
<thead> |
849 |
<tr> |
850 |
<tr> |
850 |
<th scope="col">Due date (unformatted, hidden)</th> |
851 |
<th scope="col">[% t('Due date (unformatted, hidden)') %]</th> |
851 |
<th scope="col">Due date</th> |
852 |
<th scope="col">[% t('Due date') %]</th> |
852 |
<th scope="col">Title</th> |
853 |
<th scope="col">[% t('Title') %]</th> |
853 |
<th scope="col">Item type</th> |
854 |
<th scope="col">[% t('Item type') %]</th> |
854 |
<th scope="col">Location</th> |
855 |
<th scope="col">[% t('Location') %]</th> |
855 |
<th scope="col">Checked out on</th> |
856 |
<th scope="col">[% t('Checked out on') %]</th> |
856 |
<th scope="col">Checked out from</th> |
857 |
<th scope="col">[% t('Checked out from') %]</th> |
857 |
<th scope="col">Call no</th> |
858 |
<th scope="col">[% t('Call no') %]</th> |
858 |
<th scope="col">Charge</th> |
859 |
<th scope="col">[% t('Charge') %]</th> |
859 |
<th scope="col">Fine</th> |
860 |
<th scope="col">[% t('Fine') %]</th> |
860 |
<th scope="col">Price</th> |
861 |
<th scope="col">[% t('Price') %]</th> |
861 |
<th scope="col">Patron</th> |
862 |
<th scope="col">[% t('Patron') %]</th> |
862 |
</tr> |
863 |
</tr> |
863 |
</thead> |
864 |
</thead> |
864 |
</table> |
865 |
</table> |
Lines 867-873
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
867 |
|
868 |
|
868 |
[% IF CAN_user_clubs && ( enrollable.count || enrollments.count ) %] |
869 |
[% IF CAN_user_clubs && ( enrollable.count || enrollments.count ) %] |
869 |
<div id="clubs-tab"> |
870 |
<div id="clubs-tab"> |
870 |
Loading... |
871 |
[% t('Loading...') %] |
871 |
</div> |
872 |
</div> |
872 |
[% END %] |
873 |
[% END %] |
873 |
|
874 |
|
Lines 880-894
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
880 |
<table id="holds-table" style="width: 100% !Important;"> |
881 |
<table id="holds-table" style="width: 100% !Important;"> |
881 |
<thead> |
882 |
<thead> |
882 |
<tr> |
883 |
<tr> |
883 |
<th>Hold date</th> |
884 |
<th>[% t('Hold date') %]</th> |
884 |
<th>Title</th> |
885 |
<th>[% t('Title') %]</th> |
885 |
<th>Call number</th> |
886 |
<th>[% t('Call number') %]</th> |
886 |
<th>Barcode</th> |
887 |
<th>[% t('Barcode') %]</th> |
887 |
<th>Pickup at</th> |
888 |
<th>[% t('Pickup at') %]</th> |
888 |
<th>Expiration</th> |
889 |
<th>[% t('Expiration') %]</th> |
889 |
<th>Priority</th> |
890 |
<th>[% t('Priority') %]</th> |
890 |
<th>Cancel?</th> |
891 |
<th>[% t('Cancel?') %]</th> |
891 |
<th>Suspend?</th> |
892 |
<th>[% t('Suspend?') %]</th> |
892 |
</tr> |
893 |
</tr> |
893 |
</thead> |
894 |
</thead> |
894 |
</table> |
895 |
</table> |
Lines 906-914
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
906 |
<input type="submit" value="Suspend all holds" /> |
907 |
<input type="submit" value="Suspend all holds" /> |
907 |
|
908 |
|
908 |
[% IF Koha.Preference('AutoResumeSuspendedHolds') %] |
909 |
[% IF Koha.Preference('AutoResumeSuspendedHolds') %] |
909 |
<label for="suspend_until">until</label> |
910 |
<label for="suspend_until">[% t('until') %]</label> |
910 |
<input type="text" size="10" id="suspend_until" name="suspend_until" class="datepicker"/> |
911 |
<input type="text" size="10" id="suspend_until" name="suspend_until" class="datepicker" /> |
911 |
<span class="hint">Specify date on which to resume [% INCLUDE 'date-format.inc' %]: </span> |
912 |
<span class="hint">[% t('Specify date on which to resume') %] [% INCLUDE 'date-format.inc' %]: </span> |
912 |
[% END %] |
913 |
[% END %] |
913 |
</form> |
914 |
</form> |
914 |
</fieldset> |
915 |
</fieldset> |
Lines 924-930
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
924 |
[% END # IF SuspendHoldsIntranet %] |
925 |
[% END # IF SuspendHoldsIntranet %] |
925 |
|
926 |
|
926 |
[% ELSE %] |
927 |
[% ELSE %] |
927 |
<p>Patron has nothing on hold.</p> |
928 |
<p>[% t('Patron has nothing on hold.') %]</p> |
928 |
[% END %] |
929 |
[% END %] |
929 |
</div> <!-- reservesloop --> |
930 |
</div> <!-- reservesloop --> |
930 |
|
931 |
|
Lines 933-939
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
933 |
[% END %] |
934 |
[% END %] |
934 |
|
935 |
|
935 |
[% ELSIF borrowernumber %] |
936 |
[% ELSIF borrowernumber %] |
936 |
<div class="dialog message">This patron does not exist. <a href="/cgi-bin/koha/members/members-home.pl">Find another patron?</a></div> |
937 |
<div class="dialog message">[% t('This patron does not exist.') %] <a href="/cgi-bin/koha/members/members-home.pl">[% t('Find another patron?') %]</a></div> |
937 |
[% END %] |
938 |
[% END %] |
938 |
</div></div> |
939 |
</div></div> |
939 |
[% END %] |
940 |
[% END %] |
Lines 961-971
No patron matched <span class="ex">[% message | html %]</span>
Link Here
|
961 |
<div class="modal-dialog"> |
962 |
<div class="modal-dialog"> |
962 |
<div class="modal-content"> |
963 |
<div class="modal-content"> |
963 |
<div class="modal-header"> |
964 |
<div class="modal-header"> |
964 |
<h3 id="barcodeSubmittedModalLabel">Barcode submitted</h3> |
965 |
<h3 id="barcodeSubmittedModalLabel">[% t('Barcode submitted') %]</h3> |
965 |
</div> |
966 |
</div> |
966 |
|
967 |
|
967 |
<div class="modal-body"> |
968 |
<div class="modal-body"> |
968 |
<p>You have already submitted a barcode, please wait for the checkout to process...</p> |
969 |
<p>[% t('You have already submitted a barcode, please wait for the checkout to process...') %]</p> |
969 |
</div> |
970 |
</div> |
970 |
</div> |
971 |
</div> |
971 |
</div> |
972 |
</div> |