View | Details | Raw Unified | Return to bug 41645
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt (-8 / +10 lines)
Lines 19-24 Link Here
19
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
19
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
20
<meta name="generator" content="Koha" />
20
<meta name="generator" content="Koha" />
21
<!-- leave this for stats -->
21
<!-- leave this for stats -->
22
<meta name="viewport" content="width=device-width, initial-scale=1" />
22
[% IF ( Koha.Preference('OpacFavicon') ) %]
23
[% IF ( Koha.Preference('OpacFavicon') ) %]
23
    <link rel="shortcut icon" href="[% Koha.Preference('OpacFavicon') | url %]" type="image/x-icon" />
24
    <link rel="shortcut icon" href="[% Koha.Preference('OpacFavicon') | url %]" type="image/x-icon" />
24
[% ELSE %]
25
[% ELSE %]
Lines 100-120 Link Here
100
                                            [% END %]
101
                                            [% END %]
101
                                        </h2></legend
102
                                        </h2></legend
102
                                    >
103
                                    >
103
                                    <div class="row">
104
                                    <div class="row mb-1">
104
                                        <div class="col">
105
                                        <div class="col">
105
                                            <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>
106
                                            <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>
106
                                        </div>
107
                                        </div>
107
                                        <div class="col-3">
108
                                    </div>
109
                                    <div class="row mb-1">
110
                                        <div class="col-12 col-lg-4">
108
                                            [% IF batch_checkouts_allowed %]
111
                                            [% IF batch_checkouts_allowed %]
109
                                                <textarea id="barcode" name="barcode" rows="10" cols="30" class="focus form-control"></textarea>
112
                                                <textarea id="barcode" name="barcode" rows="10" cols="30" class="focus form-control"></textarea>
110
                                            [% ELSE %]
113
                                            [% ELSE %]
111
                                                <input id="barcode" name="barcode" size="20" type="text" class="focus form-control" autocomplete="off" />
114
                                                <input id="barcode" name="barcode" size="20" type="text" class="focus form-control" autocomplete="off" />
112
                                            [% END %]
115
                                            [% END %]
113
                                        </div>
116
                                        </div>
114
                                        <div class="col-auto">
117
                                    </div>
118
                                    <div class="row mb-1">
119
                                        <div class="col">
115
                                            <button type="submit" class="btn btn-primary">Submit</button>
120
                                            <button type="submit" class="btn btn-primary">Submit</button>
116
                                        </div>
117
                                        <div class="col ml-auto">
118
                                            <button type="button" id="logout_form" class="btn btn-info"><i class="fa fa-check" aria-hidden="true"></i> Finish</button>
121
                                            <button type="button" id="logout_form" class="btn btn-info"><i class="fa fa-check" aria-hidden="true"></i> Finish</button>
119
                                            <input type="hidden" name="op" value="cud-checkout" />
122
                                            <input type="hidden" name="op" value="cud-checkout" />
120
                                            <input type="hidden" name="patronid" value="[% patronid | html %]" />
123
                                            <input type="hidden" name="patronid" value="[% patronid | html %]" />
Lines 186-194 Link Here
186
                                                                    <th class="all anti-the">Title</th>
189
                                                                    <th class="all anti-the">Title</th>
187
                                                                    <th>Call number</th>
190
                                                                    <th>Call number</th>
188
                                                                    <th class="psort">Due</th>
191
                                                                    <th class="psort">Due</th>
189
                                                                    <th class="all no-sort">Renew</th>
192
                                                                    <th class="no-sort">Renew</th>
190
                                                                    [% IF Koha.Preference('SCOAllowCheckin') %]
193
                                                                    [% IF Koha.Preference('SCOAllowCheckin') %]
191
                                                                        <th class="all no-sort">Check in</th>
194
                                                                        <th class="no-sort">Check in</th>
192
                                                                    [% END %]
195
                                                                    [% END %]
193
                                                                    [% UNLESS ( nofines ) %]
196
                                                                    [% UNLESS ( nofines ) %]
194
                                                                        <th>Fines</th>
197
                                                                        <th>Fines</th>
195
- 

Return to bug 41645