Bug 33820: Add hints to warn the librarian that they will be logged out if they chang...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / ill-requests.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Branches %]
4 [% USE Koha %]
5 [% USE KohaDates %]
6 [% SET footerjs = 1 %]
7 [% USE AuthorisedValues %]
8 [% USE TablesSettings %]
9
10 [% INCLUDE 'doc-head-open.inc' %]
11 <title>ILL requests history for [% INCLUDE 'patron-title.inc' no_html = 1 %] &rsaquo; Patrons &rsaquo; Koha</title>
12 [% INCLUDE 'doc-head-close.inc' %]
13 </head>
14
15 <body id="pat_illrequestshistory" class="pat">
16     [% WRAPPER 'header.inc' %]
17     [% INCLUDE 'patron-search-header.inc' %]
18 [% END %]
19
20 [% WRAPPER 'sub-header.inc' %]
21     [% WRAPPER breadcrumbs %]
22         [% WRAPPER breadcrumb_item %]
23             <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
24         [% END %]
25         [% WRAPPER breadcrumb_item %]
26             <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% INCLUDE 'patron-title.inc' %]</a>
27         [% END %]
28         [% WRAPPER breadcrumb_item bc_active= 1 %]
29             <span>ILL requests history</span>
30         [% END %]
31     [% END #/ WRAPPER breadcrumbs %]
32 [% END #/ WRAPPER sub-header.inc %]
33
34 <div class="main container-fluid">
35
36     <div class="row">
37         <div class="col-sm-10 col-sm-push-2">
38             <main>
39                 [% INCLUDE 'members-toolbar.inc' %]
40                 <h1>ILL requests history</h1>
41                 <div class="page-section">
42                     [% INCLUDE 'ill-list-table.inc' %]
43                 </div>
44             </main>
45         </div> <!-- .col-sm-10.col-sm-push-2 -->
46
47         <div class="col-sm-2 col-sm-pull-10">
48             <aside>
49                 [% INCLUDE 'circ-menu.inc' %]
50             </aside>
51         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
52     </div> <!-- .row -->
53
54     [% MACRO jsinclude BLOCK %]
55         [% INCLUDE 'str/members-menu.inc' %]
56         [% Asset.js("js/members-menu.js") | $raw %]
57         [% INCLUDE 'datatables.inc' %]
58         [% INCLUDE 'columns_settings.inc' %]
59         [% INCLUDE 'js-biblio-format.inc' %]
60         [% INCLUDE 'js-patron-format.inc' %]
61         [% INCLUDE 'calendar.inc' %]
62         <script>
63             var prefilters = '[% prefilters | html %]';
64             // Set column settings
65             var table_settings = [% TablesSettings.GetTableSettings( 'illrequests', 'ill-requests', 'ill-requests', 'json' ) | $raw %];
66         </script>
67         [% INCLUDE 'ill-list-table-strings.inc' %]
68         [% Asset.js("js/ill-list-table.js") | $raw %]
69     [% END %]
70
71 [% INCLUDE 'intranet-bottom.inc' %]