|
Lines 14-19
Link Here
|
| 14 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
14 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 15 |
<meta name="generator" content="Koha" /> |
15 |
<meta name="generator" content="Koha" /> |
| 16 |
<!-- leave this for stats --> |
16 |
<!-- leave this for stats --> |
|
|
17 |
<meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 17 |
[% IF ( Koha.Preference('OpacFavicon') ) %] |
18 |
[% IF ( Koha.Preference('OpacFavicon') ) %] |
| 18 |
<link rel="shortcut icon" href="[% Koha.Preference('OpacFavicon') | url %]" type="image/x-icon" /> |
19 |
<link rel="shortcut icon" href="[% Koha.Preference('OpacFavicon') | url %]" type="image/x-icon" /> |
| 19 |
[% ELSE %] |
20 |
[% ELSE %] |
|
Lines 94-114
Link Here
|
| 94 |
[% END %] |
95 |
[% END %] |
| 95 |
</h2></legend |
96 |
</h2></legend |
| 96 |
> |
97 |
> |
| 97 |
<div class="row"> |
98 |
<div class="row mb-1"> |
| 98 |
<div class="col"> |
99 |
<div class="col"> |
| 99 |
<label for="barcode">Scan a new item or enter its barcode[% IF batch_checkouts_allowed %](or for <b>multiple checkouts only,</b> enter a barcode list, one barcode per line)[% END %]:</label> |
100 |
<label for="barcode">Scan a new item or enter its barcode[% IF batch_checkouts_allowed %](or for <b>multiple checkouts only,</b> enter a barcode list, one barcode per line)[% END %]:</label> |
| 100 |
</div> |
101 |
</div> |
| 101 |
<div class="col-3"> |
102 |
</div> |
|
|
103 |
<div class="row mb-1"> |
| 104 |
<div class="col-12 col-lg-4"> |
| 102 |
[% IF batch_checkouts_allowed %] |
105 |
[% IF batch_checkouts_allowed %] |
| 103 |
<textarea id="barcode" name="barcode" rows="10" cols="30" class="focus form-control"></textarea> |
106 |
<textarea id="barcode" name="barcode" rows="10" cols="30" class="focus form-control"></textarea> |
| 104 |
[% ELSE %] |
107 |
[% ELSE %] |
| 105 |
<input id="barcode" name="barcode" size="20" type="text" class="focus form-control" autocomplete="off" /> |
108 |
<input id="barcode" name="barcode" size="20" type="text" class="focus form-control" autocomplete="off" /> |
| 106 |
[% END %] |
109 |
[% END %] |
| 107 |
</div> |
110 |
</div> |
| 108 |
<div class="col-auto"> |
111 |
</div> |
|
|
112 |
<div class="row mb-1"> |
| 113 |
<div class="col"> |
| 109 |
<button type="submit" class="btn btn-primary">Submit</button> |
114 |
<button type="submit" class="btn btn-primary">Submit</button> |
| 110 |
</div> |
|
|
| 111 |
<div class="col ml-auto"> |
| 112 |
<button type="button" id="logout_form" class="btn btn-info"><i class="fa fa-check" aria-hidden="true"></i> Finish</button> |
115 |
<button type="button" id="logout_form" class="btn btn-info"><i class="fa fa-check" aria-hidden="true"></i> Finish</button> |
| 113 |
<input type="hidden" name="op" value="cud-checkout" /> |
116 |
<input type="hidden" name="op" value="cud-checkout" /> |
| 114 |
<input type="hidden" name="patronid" value="[% patronid | html %]" /> |
117 |
<input type="hidden" name="patronid" value="[% patronid | html %]" /> |
|
Lines 180-188
Link Here
|
| 180 |
<th class="all anti-the">Title</th> |
183 |
<th class="all anti-the">Title</th> |
| 181 |
<th>Call number</th> |
184 |
<th>Call number</th> |
| 182 |
<th class="psort">Due</th> |
185 |
<th class="psort">Due</th> |
| 183 |
<th class="all no-sort">Renew</th> |
186 |
<th class="no-sort">Renew</th> |
| 184 |
[% IF Koha.Preference('SCOAllowCheckin') %] |
187 |
[% IF Koha.Preference('SCOAllowCheckin') %] |
| 185 |
<th class="all no-sort">Check in</th> |
188 |
<th class="no-sort">Check in</th> |
| 186 |
[% END %] |
189 |
[% END %] |
| 187 |
[% UNLESS ( nofines ) %] |
190 |
[% UNLESS ( nofines ) %] |
| 188 |
<th>Fines</th> |
191 |
<th>Fines</th> |
| 189 |
- |
|
|