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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchoverdues.tt (-1 / +1 lines)
Lines 45-51 Link Here
45
            [% IF ( locationsloo.selected ) %]<option value="[% locationsloo.authorised_value | html %]" selected="selected">[% locationsloo.lib | html %]</option>[% ELSE %]<option value="[% locationsloo.authorised_value | html %]">[% locationsloo.lib | html %]</option>[% END %]
45
            [% IF ( locationsloo.selected ) %]<option value="[% locationsloo.authorised_value | html %]" selected="selected">[% locationsloo.lib | html %]</option>[% ELSE %]<option value="[% locationsloo.authorised_value | html %]">[% locationsloo.lib | html %]</option>[% END %]
46
        [% END %]
46
        [% END %]
47
    </select>
47
    </select>
48
    <input type="submit" name="location" class="submit" value="OK" />
48
    <input type="submit" name="location" class="btn btn-primary" value="OK" />
49
</form>
49
</form>
50
50
51
    [% IF ( overduesloop ) %]
51
    [% IF ( overduesloop ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt (-5 / +5 lines)
Lines 76-86 Link Here
76
                        <input type="hidden" name="barcode" value="[% barcode | html %]" />
76
                        <input type="hidden" name="barcode" value="[% barcode | html %]" />
77
                        [% IF ( waiting or transferred or processing ) %]
77
                        [% IF ( waiting or transferred or processing ) %]
78
                            <input type="hidden" name="request" value="KillWaiting" />
78
                            <input type="hidden" name="request" value="KillWaiting" />
79
                            <input type="submit" value="Cancel" />
79
                            <input type="submit" class="btn btn-primary" value="Cancel" />
80
                        [% END %]
80
                        [% END %]
81
                        [% IF ( reserved ) %]
81
                        [% IF ( reserved ) %]
82
                            <input type="hidden" name="request" value="SetTransit" />
82
                            <input type="hidden" name="request" value="SetTransit" />
83
                            <input type="submit" value="Transfer" />
83
                            <input type="submit" class="btn btn-primary" value="Transfer" />
84
                        [% END %]
84
                        [% END %]
85
                    </form>
85
                    </form>
86
                </td>
86
                </td>
Lines 100-106 Link Here
100
                                <input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]" />
100
                                <input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]" />
101
                                <input type="hidden" name="tobranchcd" value="[% tobranchcd | html %]" />
101
                                <input type="hidden" name="tobranchcd" value="[% tobranchcd | html %]" />
102
                                <input type="hidden" name="request" value="KillReserved" />
102
                                <input type="hidden" name="request" value="KillReserved" />
103
                                <input type="submit" value="Cancel" />
103
                                <input type="submit" class="btn btn-primary" value="Cancel" />
104
                            </form>
104
                            </form>
105
                        </td>
105
                        </td>
106
                    </tr>
106
                    </tr>
Lines 116-122 Link Here
116
                                        <input type="hidden" name="fb-[% trsfitemloo.counter | html %]" value="[% trsfitemloo.frombrcd | html %]" />
116
                                        <input type="hidden" name="fb-[% trsfitemloo.counter | html %]" value="[% trsfitemloo.frombrcd | html %]" />
117
                                        <input type="hidden" name="tb-[% trsfitemloo.counter | html %]" value="[% trsfitemloo.tobrcd | html %]" />
117
                                        <input type="hidden" name="tb-[% trsfitemloo.counter | html %]" value="[% trsfitemloo.tobrcd | html %]" />
118
                                    [% END %]
118
                                    [% END %]
119
                                    <input type="submit" value="Ignore" />
119
                                    <input type="submit" class="btn btn-primary" value="Ignore" />
120
                                </form>
120
                                </form>
121
                            </td>
121
                            </td>
122
                    </tr>
122
                    </tr>
Lines 185-191 Link Here
185
            </li>
185
            </li>
186
            <li>
186
            <li>
187
                <label for="barcode">Enter barcode: </label>
187
                <label for="barcode">Enter barcode: </label>
188
                <input name="barcode" id="barcode" size="15" class="focus" type="text" /> <input type="submit" value="Submit" />
188
                <input name="barcode" id="barcode" size="15" class="focus" type="text" /> <input type="submit" class="btn btn-primary" value="Submit" />
189
            </li>
189
            </li>
190
			</ol>
190
			</ol>
191
        </fieldset>
191
        </fieldset>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-2 / +2 lines)
Lines 941-947 Link Here
941
                                        <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
941
                                        <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
942
                                            <input type="hidden" name="from" value="circ" />
942
                                            <input type="hidden" name="from" value="circ" />
943
                                            <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
943
                                            <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
944
                                            <input type="submit" value="Suspend all holds" />
944
                                            <input type="submit" class="btn btn-primary" value="Suspend all holds" />
945
945
946
                                            [% IF Koha.Preference('AutoResumeSuspendedHolds') %]
946
                                            [% IF Koha.Preference('AutoResumeSuspendedHolds') %]
947
                                            <label for="suspend_until">until</label>
947
                                            <label for="suspend_until">until</label>
Lines 956-962 Link Here
956
                                            <input type="hidden" name="from" value="circ" />
956
                                            <input type="hidden" name="from" value="circ" />
957
                                            <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
957
                                            <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
958
                                            <input type="hidden" name="suspend" value="0" />
958
                                            <input type="hidden" name="suspend" value="0" />
959
                                            <input type="submit" value="Resume all suspended holds" />
959
                                            <input type="submit" class="btn btn-primary" value="Resume all suspended holds" />
960
                                        </form>
960
                                        </form>
961
                                    </fieldset>
961
                                    </fieldset>
962
                                [% END # /IF SuspendHoldsIntranet %]
962
                                [% END # /IF SuspendHoldsIntranet %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-2 / +2 lines)
Lines 124-130 Link Here
124
        <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" />
124
        <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" />
125
        <input type="hidden" name="branch" value="[% branch | html %]" />
125
        <input type="hidden" name="branch" value="[% branch | html %]" />
126
        <input type="hidden" name="batch" value="1" />
126
        <input type="hidden" name="batch" value="1" />
127
        <input type="submit" value="Check out" class="button" />
127
        <input type="submit" class="btn btn-primary" value="Check out" />
128
      </fieldset>
128
      </fieldset>
129
    </fieldset>
129
    </fieldset>
130
  </form>
130
  </form>
Lines 321-327 Link Here
321
      <input type="hidden" name="branch" value="[% branch | html %]" />
321
      <input type="hidden" name="branch" value="[% branch | html %]" />
322
      <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
322
      <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
323
      <input type="hidden" name="batch" value="1" />
323
      <input type="hidden" name="batch" value="1" />
324
      <input type="submit" id="checkoutrenew" class="approve" value="Checkout or renew" />
324
      <input type="submit" id="checkoutrenew" class="btn btn-primary" value="Checkout or renew" />
325
        </fieldset>
325
        </fieldset>
326
    </form>
326
    </form>
327
    [% END %]
327
    [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/curbside_pickups.tt (-1 / +1 lines)
Lines 489-495 Link Here
489
                                    </fieldset>
489
                                    </fieldset>
490
490
491
                                    <fieldset class="action">
491
                                    <fieldset class="action">
492
                                        <input id="schedule-pickup-button" type="submit" value="Submit" />
492
                                        <input type="submit" id="schedule-pickup-button" class="btn btn-primary" value="Submit" />
493
                                    </fieldset>
493
                                    </fieldset>
494
                                </form>
494
                                </form>
495
                            [% ELSE %]
495
                            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/offline.tt (-2 / +2 lines)
Lines 110-116 Link Here
110
                                <legend>Check in</legend>
110
                                <legend>Check in</legend>
111
                                <label for="checkin-barcode">Enter item barcode: </label>
111
                                <label for="checkin-barcode">Enter item barcode: </label>
112
                                <input name="barcode" id="checkin-barcode" size="14" class="focus" type="text" />
112
                                <input name="barcode" id="checkin-barcode" size="14" class="focus" type="text" />
113
                                <input type="submit" class="submit" value="Submit" />
113
                                <input type="submit" class="btn btn-primary" value="Submit" />
114
                            </fieldset>
114
                            </fieldset>
115
                        </div>
115
                        </div>
116
                    </form>
116
                    </form>
Lines 139-145 Link Here
139
                        <label for="checkout-barcode">Checking out to <span class="patron-title"></span></label>
139
                        <label for="checkout-barcode">Checking out to <span class="patron-title"></span></label>
140
                        <div class="hint">Enter item barcode:</div>
140
                        <div class="hint">Enter item barcode:</div>
141
                        <input type="text" name="barcode" id="checkout-barcode" class="barcode focus" size="14" />
141
                        <input type="text" name="barcode" id="checkout-barcode" class="barcode focus" size="14" />
142
                        <input type="submit" value="Check out" />
142
                        <input type="submit" class="btn btn-primary" value="Check out" />
143
143
144
                        <div class="date-select">
144
                        <div class="date-select">
145
                            <div class="hint">Specify due date [% INCLUDE 'date-format.inc' %]: </div>
145
                            <div class="hint">Specify due date [% INCLUDE 'date-format.inc' %]: </div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt (-1 / +1 lines)
Lines 273-279 Link Here
273
273
274
</ol>
274
</ol>
275
   <fieldset class="action">
275
   <fieldset class="action">
276
      <input type="submit" value="Apply filter" class="submit" />
276
      <input type="submit" class="btn btn-primary" value="Apply filter" />
277
      <input type="hidden" name="op" value="apply filter" />
277
      <input type="hidden" name="op" value="apply filter" />
278
   </fieldset>
278
   </fieldset>
279
   </fieldset>
279
   </fieldset>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-3 / +3 lines)
Lines 229-238 Link Here
229
                    <input type="hidden" name="reserve_id" value="[% hold.reserve_id | html %]" />
229
                    <input type="hidden" name="reserve_id" value="[% hold.reserve_id | html %]" />
230
                    [% IF Koha.Preference('CanMarkHoldsToPullAsLost') == 'allow' %]
230
                    [% IF Koha.Preference('CanMarkHoldsToPullAsLost') == 'allow' %]
231
                        <input type="hidden" name="op" value="mark_as_lost" />
231
                        <input type="hidden" name="op" value="mark_as_lost" />
232
                        <input type="submit" value="Mark item as lost" />
232
                        <input type="submit" class="btn btn-primary" value="Mark item as lost" />
233
                    [% ELSIF Koha.Preference('CanMarkHoldsToPullAsLost') == 'allow_and_notify' %]
233
                    [% ELSIF Koha.Preference('CanMarkHoldsToPullAsLost') == 'allow_and_notify' %]
234
                        <input type="hidden" name="op" value="mark_as_lost_and_notify" />
234
                        <input type="hidden" name="op" value="mark_as_lost_and_notify" />
235
                        <input type="submit" value="Mark lost and notify patron" />
235
                        <input type="submit" class="btn btn-primary" value="Mark lost and notify patron" />
236
                    [% END %]
236
                    [% END %]
237
                </form>
237
                </form>
238
            [% ELSE %]
238
            [% ELSE %]
Lines 301-307 Link Here
301
    <p><em>(Inclusive, default is [% HoldsToPullStartDate | html %] days ago to today. Set other date ranges as needed.)</em></p>
301
    <p><em>(Inclusive, default is [% HoldsToPullStartDate | html %] days ago to today. Set other date ranges as needed.)</em></p>
302
[% END %]
302
[% END %]
303
303
304
<fieldset class="action"><input type="submit" name="run_report" value="Submit" class="submit"/></fieldset>
304
<fieldset class="action"><input type="submit" name="run_report" value="Submit" class="btn btn-primary" /></fieldset>
305
</fieldset>
305
</fieldset>
306
</form>
306
</form>
307
307
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/set-library.tt (-1 / +1 lines)
Lines 128-134 Updated:<ul> Link Here
128
[% END %]
128
[% END %]
129
129
130
<fieldset class="action">
130
<fieldset class="action">
131
    <input type="submit" value="Submit" />
131
    <input type="submit" class="btn btn-primary" value="Submit" />
132
    <a class="cancel" id="cancel_set_library" href="[% referer or '/cgi-bin/koha/circ/circulation.pl' %]">Cancel</a>
132
    <a class="cancel" id="cancel_set_library" href="[% referer or '/cgi-bin/koha/circ/circulation.pl' %]">Cancel</a>
133
</fieldset>
133
</fieldset>
134
<div class="noshow">
134
<div class="noshow">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-1 / +1 lines)
Lines 286-292 Link Here
286
                </li>
286
                </li>
287
            </ol>
287
            </ol>
288
            <fieldset class="action">
288
            <fieldset class="action">
289
                <input type="submit" value="Submit" />
289
                <input type="submit" class="btn btn-primary" value="Submit" />
290
                <input type="hidden" name="run_report" value="1" />
290
                <input type="hidden" name="run_report" value="1" />
291
            </fieldset>
291
            </fieldset>
292
        </fieldset>
292
        </fieldset>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt (-3 / +3 lines)
Lines 110-116 Link Here
110
            <div role="tabpanel" class="tab-pane active" id="holdswaiting">
110
            <div role="tabpanel" class="tab-pane active" id="holdswaiting">
111
        [% IF ( reserveloop ) %]
111
        [% IF ( reserveloop ) %]
112
            <div id="toolbar" class="btn-toolbar">
112
            <div id="toolbar" class="btn-toolbar">
113
                <button class="cancel_selected_holds" data-bulk="true"></button>
113
                <button class="btn btn-default cancel_selected_holds" data-bulk="true"></button>
114
            </div>
114
            </div>
115
            [% INCLUDE waiting_holds.inc table_name='holdst' reserveloop=reserveloop tab='holdwaiting' %]
115
            [% INCLUDE waiting_holds.inc table_name='holdst' reserveloop=reserveloop tab='holdwaiting' %]
116
        [% ELSE %]
116
        [% ELSE %]
Lines 127-135 Link Here
127
                       <input type="hidden" name="allbranches" value="[% allbranches | html %]" />
127
                       <input type="hidden" name="allbranches" value="[% allbranches | html %]" />
128
                       <input type="hidden" name="tab" value="holdsover">
128
                       <input type="hidden" name="tab" value="holdsover">
129
                       [% IF TransferWhenCancelAllWaitingHolds %]
129
                       [% IF TransferWhenCancelAllWaitingHolds %]
130
                           <input type="submit" value="Cancel and Transfer all" />
130
                           <input type="submit" class="btn btn-primary" value="Cancel and Transfer all" />
131
                       [% ELSE %]
131
                       [% ELSE %]
132
                           <input type="submit" value="Cancel all" />
132
                           <input type="submit" class="btn btn-primary" value="Cancel all" />
133
                       [% END %]
133
                       [% END %]
134
                   </form>
134
                   </form>
135
                   [% UNLESS TransferWhenCancelAllWaitingHolds %]
135
                   [% UNLESS TransferWhenCancelAllWaitingHolds %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/process_koc.tt (-2 / +1 lines)
Lines 70-76 Link Here
70
            <input class="required" required="required" type="file" id="fileToUpload" size="50" name="fileToUpload" />
70
            <input class="required" required="required" type="file" id="fileToUpload" size="50" name="fileToUpload" />
71
            <span class="required">Required</span>
71
            <span class="required">Required</span>
72
       </li></ol>
72
       </li></ol>
73
       <fieldset class="action"><input type="button" class="submit" value="Upload file" id="upload_file" /></fieldset>
73
       <fieldset class="action"><input type="button" class="btn btn-primary" value="Upload file" id="upload_file" /></fieldset>
74
	   </fieldset>
74
	   </fieldset>
75
     </form>
75
     </form>
76
     <div id="fileuploadstatus" class="progress_panel" style="display:none">Upload progress: <progress id="fileuploadprogress" max="100" value="0"></progress> <span class="fileuploadpercent">0</span>%</div>
76
     <div id="fileuploadstatus" class="progress_panel" style="display:none">Upload progress: <progress id="fileuploadprogress" max="100" value="0"></progress> <span class="fileuploadpercent">0</span>%</div>
77
- 

Return to bug 32073