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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/ill-list-table.inc (-37 / +42 lines)
Lines 1-36 Link Here
1
<table id="ill-requests"[% IF prefilters.length > 0 %] data-prefilters="[% prefilters %]"[% END %]>
1
<div>
2
    <thead>
2
    [% IF prefilters.length > 0 %]
3
        <tr id="illview-header">
3
    <table id="ill-requests" data-prefilters="[% prefilters %]">
4
            <th scope="col">Request ID</th>
4
    [% ELSE %]
5
            <th scope="col">Author</th>
5
    <table id="ill-requests">
6
            <th scope="col">Title</th>
6
    [% END %]
7
            <th scope="col">Article title</th>
7
        <thead>
8
            <th scope="col">Issue</th>
8
            <tr id="illview-header">
9
            <th scope="col">Volume</th>
9
                <th scope="col">Request ID</th>
10
            <th scope="col">Year</th>
10
                <th scope="col">Author</th>
11
            <th scope="col">Pages</th>
11
                <th scope="col">Title</th>
12
            <th scope="col">Type</th>
12
                <th scope="col">Article title</th>
13
            <th scope="col">Order ID</th>
13
                <th scope="col">Issue</th>
14
            <th scope="col">Patron ID</th>
14
                <th scope="col">Volume</th>
15
            <th scope="col" class="patron_cardnumber">Patron barcode</th>
15
                <th scope="col">Year</th>
16
            <th scope="col">Patron</th>
16
                <th scope="col">Pages</th>
17
            <th scope="col">Biblio ID</th>
17
                <th scope="col">Type</th>
18
            <th scope="col">Branch</th>
18
                <th scope="col">Order ID</th>
19
            <th scope="col">Status</th>
19
                <th scope="col">Patron ID</th>
20
            <th scope="col" class="placed">&nbsp;</th>
20
                <th scope="col" class="patron_cardnumber">Patron barcode</th>
21
            <th scope="col" class="placed_formatted">Placed on</th>
21
                <th scope="col">Patron</th>
22
            <th scope="col" class="updated">&nbsp;</th>
22
                <th scope="col">Biblio ID</th>
23
            <th scope="col" class="updated_formatted">Updated on</th>
23
                <th scope="col">Branch</th>
24
            <th scope="col">Replied</th>
24
                <th scope="col">Status</th>
25
            <th scope="col">Completed on</th>
25
                <th scope="col" class="placed">&nbsp;</th>
26
            <th scope="col">Access URL</th>
26
                <th scope="col" class="placed_formatted">Placed on</th>
27
            <th scope="col">Cost</th>
27
                <th scope="col" class="updated">&nbsp;</th>
28
            <th scope="col">OPAC notes</th>
28
                <th scope="col" class="updated_formatted">Updated on</th>
29
            <th scope="col">Staff notes</th>
29
                <th scope="col">Replied</th>
30
            <th scope="col">Backend</th>
30
                <th scope="col">Completed on</th>
31
            <th scope="col" class="actions"></th>
31
                <th scope="col">Access URL</th>
32
        </tr>
32
                <th scope="col">Cost</th>
33
    </thead>
33
                <th scope="col">OPAC notes</th>
34
    <tbody id="illview-body">
34
                <th scope="col">Staff notes</th>
35
    </tbody>
35
                <th scope="col">Backend</th>
36
</table>
36
                <th scope="col" class="actions"></th>
37
            </tr>
38
        </thead>
39
        <tbody id="illview-body">
40
        </tbody>
41
    </table>
42
</div>
37
- 

Return to bug 18589