Lines 1-4
Link Here
|
1 |
[% USE raw %] |
1 |
[% USE raw %] |
2 |
[% USE Asset %] |
2 |
[% USE Asset %] |
3 |
[% USE Koha %] |
3 |
[% USE Koha %] |
4 |
[% USE KohaDates %] |
4 |
[% USE KohaDates %] |
Lines 102-108
Link Here
|
102 |
<input type="hidden" name="patronid" value="[% patronid | html %]" /> |
102 |
<input type="hidden" name="patronid" value="[% patronid | html %]" /> |
103 |
<input type="hidden" name="barcode" value="[% barcode | html %]" /> |
103 |
<input type="hidden" name="barcode" value="[% barcode | html %]" /> |
104 |
<input type="hidden" name="newissues" value="[% newissues | html %]" /> |
104 |
<input type="hidden" name="newissues" value="[% newissues | html %]" /> |
105 |
<input type="submit" name= "confirm" value="Return to account summary" class="btn back focus" /> |
105 |
<input type="submit" name= "confirm" value="Return to account summary" class="btn btn-info back focus" /> |
106 |
</form> |
106 |
</form> |
107 |
</div> <!-- / .alert --> |
107 |
</div> <!-- / .alert --> |
108 |
[% END # / IF ( impossible %] |
108 |
[% END # / IF ( impossible %] |
Lines 330-338
Link Here
|
330 |
<input type="hidden" name="op" value="checkout" /> |
330 |
<input type="hidden" name="op" value="checkout" /> |
331 |
<input type="hidden" name="confirmed" value="1" /> |
331 |
<input type="hidden" name="confirmed" value="1" /> |
332 |
[% UNLESS ( ISSUE.renew ) %] |
332 |
[% UNLESS ( ISSUE.renew ) %] |
333 |
<input type="submit" value="Renew item" name="confirm " class="btn renew" /> |
333 |
<input type="submit" value="Renew item" name="confirm " class="btn btn-primary btn-sm renew" /> |
334 |
[% ELSE %] |
334 |
[% ELSE %] |
335 |
<input type="submit" value="Renew item" class="btn renew" /> |
335 |
<input type="submit" value="Renew item" class="btn btn-primary btn-sm renew" /> |
336 |
[% END %] |
336 |
[% END %] |
337 |
[% ELSE %] |
337 |
[% ELSE %] |
338 |
[% IF ISSUE.renew_error == 'auto_renew' OR ISSUE.renew_error == 'auto_too_soon' %] |
338 |
[% IF ISSUE.renew_error == 'auto_renew' OR ISSUE.renew_error == 'auto_too_soon' %] |
Lines 343-349
Link Here
|
343 |
<span>No renewals allowed</span> |
343 |
<span>No renewals allowed</span> |
344 |
[% END %] |
344 |
[% END %] |
345 |
[% IF Koha.Preference('SCOAllowCheckin') %] |
345 |
[% IF Koha.Preference('SCOAllowCheckin') %] |
346 |
<input type="submit" value="Check in item" name="confirm" class="btn return" /> |
346 |
<input type="submit" value="Check in item" name="confirm" class="btn btn-info btn-sm return" /> |
347 |
<input type="hidden" name="op" value="returnbook" /> |
347 |
<input type="hidden" name="op" value="returnbook" /> |
348 |
<input type="hidden" name="confirmed" value="" /> |
348 |
<input type="hidden" name="confirmed" value="" /> |
349 |
[% END %] |
349 |
[% END %] |
350 |
- |
|
|