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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc (-2 / +2 lines)
Lines 248-254 CAN_user_serials_create_subscription ) %] Link Here
248
        [% IF ( holdfor ) %]
248
        [% IF ( holdfor ) %]
249
            <div class="btn-group">
249
            <div class="btn-group">
250
                <button class="btn btn-small dropdown-toggle" data-toggle="dropdown">
250
                <button class="btn btn-small dropdown-toggle" data-toggle="dropdown">
251
                    <i class="fa fa-hold"></i>
251
                    <i class="fa fa-sticky-note-o"></i>
252
                    Place hold
252
                    Place hold
253
                    <span class="caret"></span>
253
                    <span class="caret"></span>
254
                </button>
254
                </button>
Lines 258-264 CAN_user_serials_create_subscription ) %] Link Here
258
                </ul>
258
                </ul>
259
            </div>
259
            </div>
260
        [% ELSE %]
260
        [% ELSE %]
261
            <div class="btn-group"><a id="placehold" class="btn btn-small" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]"><i class="fa fa-hold"></i> Place hold</a></div>
261
            <div class="btn-group"><a id="placehold" class="btn btn-small" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblionumber %]"><i class="fa fa-sticky-note-o"></i> Place hold</a></div>
262
        [% END %]
262
        [% END %]
263
    [% END %]
263
    [% END %]
264
[% END %]
264
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-3 / +3 lines)
Lines 206-212 function placeHold () { Link Here
206
function forgetPatron(){
206
function forgetPatron(){
207
    $.removeCookie("holdfor", { path: '/' });
207
    $.removeCookie("holdfor", { path: '/' });
208
    $(".holdforlink").remove();
208
    $(".holdforlink").remove();
209
    $("#placeholdc").html("<a class=\"btn btn-mini placehold\" href=\"#\"><i class=\"fa fa-hold\"></i> "+_("Place hold")+"</a>");
209
    $("#placeholdc").html("<a class=\"btn btn-mini placehold\" href=\"#\"><i class=\"fa fa-sticky-note-o"\"></i> "+_("Place hold")+"</a>");
210
}
210
}
211
211
212
function addToList () {
212
function addToList () {
Lines 318-324 var holdForPatron = function () { Link Here
318
                [% IF ( CAN_user_reserveforothers && DisplayMultiPlaceHold ) %]
318
                [% IF ( CAN_user_reserveforothers && DisplayMultiPlaceHold ) %]
319
                [% IF ( holdfor ) %]
319
                [% IF ( holdfor ) %]
320
                    <div id="placeholdc" class="btn-group">
320
                    <div id="placeholdc" class="btn-group">
321
                        <button class="btn btn-mini placehold"><i class="fa fa-hold"></i> Place hold</button>
321
                        <button class="btn btn-mini placehold"><i class="fa fa-sticky-note-o"></i> Place hold</button>
322
                        <button class="btn btn-mini dropdown-toggle" data-toggle="dropdown">
322
                        <button class="btn btn-mini dropdown-toggle" data-toggle="dropdown">
323
                        <span class="caret"></span>
323
                        <span class="caret"></span>
324
                        </button>
324
                        </button>
Lines 330-336 var holdForPatron = function () { Link Here
330
                        </ul>
330
                        </ul>
331
                    </div>
331
                    </div>
332
                [% ELSE %]
332
                [% ELSE %]
333
                    <div id="placeholdc" class="btn-group"><a class="btn btn-mini placehold" href="#"><i class="fa fa-hold"></i> Place hold</a></div>
333
                    <div id="placeholdc" class="btn-group"><a class="btn btn-mini placehold" href="#"><i class="fa fa-sticky-note-o""></i> Place hold</a></div>
334
                [% END %]
334
                [% END %]
335
                [% END %]
335
                [% END %]
336
336
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt (-2 / +1 lines)
Lines 376-382 function placeHold () { Link Here
376
        <span class="addto">| </span>
376
        <span class="addto">| </span>
377
        &nbsp;
377
        &nbsp;
378
        [% IF ( CAN_user_reserveforothers && DisplayMultiPlaceHold ) %]
378
        [% IF ( CAN_user_reserveforothers && DisplayMultiPlaceHold ) %]
379
            <div class="btn-group"><button class="btn btn-mini placehold"><i class="fa fa-hold"></i> Place hold</button></div>
379
            <div class="btn-group"><button class="btn btn-mini placehold"><i class="fa fa-sticky-note-o"></i> Place hold</button></div>
380
        [% END %]
380
        [% END %]
381
        [% IF ( allowremovingitems ) %]
381
        [% IF ( allowremovingitems ) %]
382
            <div class="btn-group"><button type="submit" class="btn btn-mini list-remove"><i class="fa fa-times-circle"></i> Remove selected</button></div>
382
            <div class="btn-group"><button type="submit" class="btn btn-mini list-remove"><i class="fa fa-times-circle"></i> Remove selected</button></div>
383
- 

Return to bug 14915