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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-15 / +25 lines)
Lines 5-11 Link Here
5
[% ELSE %]
5
[% ELSE %]
6
    <title>Koha &rsaquo; Circulation &rsaquo; Holds &rsaquo; Confirm holds</title>
6
    <title>Koha &rsaquo; Circulation &rsaquo; Holds &rsaquo; Confirm holds</title>
7
[% END %]
7
[% END %]
8
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
8
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
10
[% INCLUDE 'datatables.inc' %]
9
[% INCLUDE 'calendar.inc' %]
11
[% INCLUDE 'calendar.inc' %]
10
<script type="text/javascript">
12
<script type="text/javascript">
11
    // <![CDATA[
13
    // <![CDATA[
Lines 24-29 $(document).ready(function() { Link Here
24
    [% IF AutoResumeSuspendedHolds %]
26
    [% IF AutoResumeSuspendedHolds %]
25
        $(".suspend_until_datepicker, .datepickerfrom, .datepickerto").datepicker("option", "minDate", 1);
27
        $(".suspend_until_datepicker, .datepickerfrom, .datepickerto").datepicker("option", "minDate", 1);
26
    [% END %]
28
    [% END %]
29
30
    var my_table = $("#requestspecific").dataTable($.extend(true, {}, dataTablesDefaults, {
31
        'bPaginate': false,
32
        'bInfo': false,
33
        "bAutoWidth": false,
34
    }));
35
27
});
36
});
28
37
29
function check() {
38
function check() {
Lines 395-415 function checkMultiHold() { Link Here
395
404
396
        <table id="requestspecific">
405
        <table id="requestspecific">
397
        <caption>Place a hold on a specific item</caption>
406
        <caption>Place a hold on a specific item</caption>
407
            <thead>
398
		<tr>
408
		<tr>
399
            <th>Hold</th>
409
                    <th>Hold</th>
400
            [% IF ( item_level_itypes ) %]
410
                [% IF ( item_level_itypes ) %]
401
                <th>Item type</th>
411
                    <th>Item type</th>
402
            [% END %]
412
                [% END %]
403
            <th>Barcode</th>
413
                <th>Barcode</th>
404
            <th>Home library</th>
414
                <th>Home library</th>
405
            <th>Last location</th>
415
                <th>Last location</th>
406
            <th>Call no.</th>
416
                <th>Call no.</th>
407
            <th>Copy number</th>
417
                <th>Copy number</th>
408
            [% IF itemdata_enumchron %]
418
                [% IF itemdata_enumchron %]
409
            <th>Vol no.</th>
419
                <th>Vol no.</th>
410
            [% END %]
420
                [% END %]
411
            <th>Information</th>
421
                <th>Information</th>
412
        </tr>
422
                </tr>
423
            </thead>
413
    [% FOREACH itemloo IN bibitemloo.itemloop %]
424
    [% FOREACH itemloo IN bibitemloo.itemloop %]
414
        [% UNLESS ( itemloo.hide ) %]
425
        [% UNLESS ( itemloo.hide ) %]
415
        <tr class="[% itemloo.backgroundcolor %]">
426
        <tr class="[% itemloo.backgroundcolor %]">
416
- 

Return to bug 13887