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 |
[% SET logged_in_branchcode = Branches.GetLoggedInBranchcode() %] |
4 |
[% SET logged_in_branchcode = Branches.GetLoggedInBranchcode() %] |
Lines 246-251
Link Here
|
246 |
</div> |
247 |
</div> |
247 |
[% END # /IF WaitingHolds.count %] |
248 |
[% END # /IF WaitingHolds.count %] |
248 |
|
249 |
|
|
|
250 |
[% IF Koha.Preference("CurbsidePickup") %] |
251 |
[% SET curbside_pickups = patron.curbside_pickups.search( branchcode => logged_in_user.branchcode ) %] |
252 |
[% IF curbside_pickups.count %] |
253 |
<div id="curbside_pickups" class="circmessage"> |
254 |
<h4>Curbside pickups scheduled here</h4> |
255 |
<ul> |
256 |
[% FOR cp IN curbside_pickups %] |
257 |
<li>On [% cp.scheduled_pickup_datetime | $KohaDates %]: |
258 |
[% SWITCH cp.status %] |
259 |
[% CASE 'to-be-staged' %] |
260 |
<a href="/cgi-bin/koha/circ/curbside_pickups.pl?tab=to-be-staged"> |
261 |
To be staged</a> |
262 |
[% CASE 'staged-and-ready' %] |
263 |
<a href="/cgi-bin/koha/circ/curbside_pickups.pl?tab=staged-and-ready"> |
264 |
Staged and ready</a> |
265 |
[% CASE 'patron-is-outside' %] |
266 |
<a href="/cgi-bin/koha/circ/curbside_pickups.pl?tab=patron-is-outside"> |
267 |
Patron is outside!</a> |
268 |
[% CASE 'delivered' %] |
269 |
<a href="/cgi-bin/koha/circ/curbside_pickups.pl?tab=delivered-today"> |
270 |
Delivered</a> |
271 |
[% CASE %]<span>Unknown status "[% cp.status | html %]"</span> |
272 |
[% END %] |
273 |
</li> |
274 |
[% END %] |
275 |
</ul> |
276 |
</div> |
277 |
[% END %] |
278 |
[% END %] |
279 |
|
249 |
[% IF ( patron.borrowernotes ) %] |
280 |
[% IF ( patron.borrowernotes ) %] |
250 |
<div id="circnotes" class="circmessage"> |
281 |
<div id="circnotes" class="circmessage"> |
251 |
<h4>Notes</h4> |
282 |
<h4>Notes</h4> |