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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/ill-list-table.inc (-42 / +40 lines)
Lines 1-42 Link Here
1
<div class="page-section">
1
[% IF prefilters.length > 0 %]
2
    [% IF prefilters.length > 0 %]
2
<table id="ill-requests" data-prefilters="[% prefilters | html %]">
3
    <table id="ill-requests" data-prefilters="[% prefilters | html %]">
3
[% ELSE %]
4
    [% ELSE %]
4
<table id="ill-requests">
5
    <table id="ill-requests">
5
[% END %]
6
    [% END %]
6
    <thead>
7
        <thead>
7
        <tr id="illview-header">
8
            <tr id="illview-header">
8
            <th scope="col">Request ID</th>
9
                <th scope="col">Request ID</th>
9
            <th scope="col">Author</th>
10
                <th scope="col">Author</th>
10
            <th scope="col">Title</th>
11
                <th scope="col">Title</th>
11
            <th scope="col">Article title</th>
12
                <th scope="col">Article title</th>
12
            <th scope="col">Issue</th>
13
                <th scope="col">Issue</th>
13
            <th scope="col">Volume</th>
14
                <th scope="col">Volume</th>
14
            <th scope="col">Year</th>
15
                <th scope="col">Year</th>
15
            <th scope="col">Pages</th>
16
                <th scope="col">Pages</th>
16
            <th scope="col">Type</th>
17
                <th scope="col">Type</th>
17
            <th scope="col">Order ID</th>
18
                <th scope="col">Order ID</th>
18
            <th scope="col">Patron</th>
19
                <th scope="col">Patron</th>
19
            <th scope="col">Bibliographic record</th>
20
                <th scope="col">Bibliographic record</th>
20
            <th scope="col">Branch</th>
21
                <th scope="col">Branch</th>
21
            <th scope="col">Status</th>
22
                <th scope="col">Status</th>
22
            <th scope="col" class="placed">&nbsp;</th>
23
                <th scope="col" class="placed">&nbsp;</th>
23
            <th scope="col" class="placed_formatted">Placed on</th>
24
                <th scope="col" class="placed_formatted">Placed on</th>
24
            <th scope="col" class="updated">&nbsp;</th>
25
                <th scope="col" class="updated">&nbsp;</th>
25
            <th scope="col" class="updated_formatted">Updated on</th>
26
                <th scope="col" class="updated_formatted">Updated on</th>
26
            <th scope="col">Replied</th>
27
                <th scope="col">Replied</th>
27
            <th scope="col" class="completed">&nbsp;</th>
28
                <th scope="col" class="completed">&nbsp;</th>
28
            <th scope="col" class="completed_formatted">Completed on</th>
29
                <th scope="col" class="completed_formatted">Completed on</th>
29
            <th scope="col">Access URL</th>
30
                <th scope="col">Access URL</th>
30
            <th scope="col">Cost</th>
31
                <th scope="col">Cost</th>
31
            <th scope="col">Comments</th>
32
                <th scope="col">Comments</th>
32
            <th scope="col">OPAC notes</th>
33
                <th scope="col">OPAC notes</th>
33
            <th scope="col">Staff notes</th>
34
                <th scope="col">Staff notes</th>
34
            <th scope="col">Backend</th>
35
                <th scope="col">Backend</th>
35
            <th scope="col" class="actions"></th>
36
                <th scope="col" class="actions"></th>
36
        </tr>
37
            </tr>
37
    </thead>
38
        </thead>
38
    <tbody id="illview-body">
39
        <tbody id="illview-body">
39
    </tbody>
40
        </tbody>
40
</table>
41
    </table>
42
</div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-3 / +2 lines)
Lines 784-793 Link Here
784
                [% ELSIF query_type == 'illlist' %]
784
                [% ELSIF query_type == 'illlist' %]
785
                    <!-- illlist -->
785
                    <!-- illlist -->
786
                    <h1>View ILL requests</h1>
786
                    <h1>View ILL requests</h1>
787
                    <div id="results">
787
                    <div id="results" class="page-section">
788
                        <h3>Details for all requests</h3>
788
                        <h2>Details for all requests</h2>
789
                        [% INCLUDE 'ill-list-table.inc' %]
789
                        [% INCLUDE 'ill-list-table.inc' %]
790
791
                    </div> <!-- /#results -->
790
                    </div> <!-- /#results -->
792
                [% ELSIF query_type == 'availability' %]
791
                [% ELSIF query_type == 'availability' %]
793
                    <!-- availability -->
792
                    <!-- availability -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/ill-requests.tt (-2 / +3 lines)
Lines 42-48 Link Here
42
            <main>
42
            <main>
43
                [% INCLUDE 'members-toolbar.inc' %]
43
                [% INCLUDE 'members-toolbar.inc' %]
44
                <h1>ILL requests history</h1>
44
                <h1>ILL requests history</h1>
45
                [% INCLUDE 'ill-list-table.inc' %]
45
                <div class="page-section">
46
                    [% INCLUDE 'ill-list-table.inc' %]
47
                </div>
46
            </main>
48
            </main>
47
        </div> <!-- .col-sm-10.col-sm-push-2 -->
49
        </div> <!-- .col-sm-10.col-sm-push-2 -->
48
50
49
- 

Return to bug 32576