Lines 1-3
Link Here
|
|
|
1 |
[% USE raw %] |
1 |
[% SET ClaimReturnedWarningThreshold = Koha.Preference('ClaimReturnedWarningThreshold') %] |
2 |
[% SET ClaimReturnedWarningThreshold = Koha.Preference('ClaimReturnedWarningThreshold') %] |
2 |
[% SET return_claims = patron.return_claims %] |
3 |
[% SET return_claims = patron.return_claims %] |
3 |
|
4 |
|
Lines 188-193
Link Here
|
188 |
</div> |
189 |
</div> |
189 |
[% END # /IF WaitingHolds.count %] |
190 |
[% END # /IF WaitingHolds.count %] |
190 |
|
191 |
|
|
|
192 |
[% IF Koha.Preference("CurbsidePickup") %] |
193 |
[% SET curbside_pickups = patron.curbside_pickups.search( branchcode => logged_in_user.branchcode ) %] |
194 |
[% IF curbside_pickups.count %] |
195 |
<div id="curbside_pickups" class="circmessage"> |
196 |
<h4>Curbside pickups scheduled here</h4> |
197 |
<ul> |
198 |
[% FOR cp IN curbside_pickups %] |
199 |
<li>On [% cp.scheduled_pickup_datetime | $KohaDates %]: |
200 |
[% SWITCH cp.status %] |
201 |
[% CASE 'to-be-staged' %] |
202 |
<a href="/cgi-bin/koha/circ/curbside_pickups.pl?tab=to-be-staged"> |
203 |
To be staged</a> |
204 |
[% CASE 'staged-and-ready' %] |
205 |
<a href="/cgi-bin/koha/circ/curbside_pickups.pl?tab=staged-and-ready"> |
206 |
Staged and ready</a> |
207 |
[% CASE 'patron-is-outside' %] |
208 |
<a href="/cgi-bin/koha/circ/curbside_pickups.pl?tab=patron-is-outside"> |
209 |
Patron is outside!</a> |
210 |
[% CASE 'delivered' %] |
211 |
<a href="/cgi-bin/koha/circ/curbside_pickups.pl?tab=delivered-today"> |
212 |
Delivered</a> |
213 |
[% CASE %]<span>Unknown status "[% cp.status | html %]"</span> |
214 |
[% END %] |
215 |
</li> |
216 |
[% END %] |
217 |
</ul> |
218 |
</div> |
219 |
[% END %] |
220 |
[% END %] |
221 |
|
191 |
[% IF ( patron.borrowernotes ) %] |
222 |
[% IF ( patron.borrowernotes ) %] |
192 |
<div id="circnotes" class="circmessage"> |
223 |
<div id="circnotes" class="circmessage"> |
193 |
<h4>Notes</h4> |
224 |
<h4>Notes</h4> |