Bug 18589: (QA follow-up) Remove dateFormat from javascript on ill requests pages.
[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 ColumnsSettings %]
9
10 [% INCLUDE 'doc-head-open.inc' %]
11 <title>Koha &rsaquo; Patrons &rsaquo; ILL requests history for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
12 [% INCLUDE 'doc-head-close.inc' %]
13 </head>
14
15 <body id="pat_illrequestshistory" class="pat">
16     [% INCLUDE 'header.inc' %]
17     [% INCLUDE 'patron-search.inc' %]
18
19     <div id="breadcrumbs">
20         <a href="/cgi-bin/koha/mainpage.pl">Home</a>
21         &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
22         &rsaquo; ILL requests history for [% INCLUDE 'patron-title.inc' %]
23     </div>
24
25 <div class="main container-fluid">
26
27     <div class="row">
28         <div class="col-sm-10 col-sm-push-2">
29             <main>
30                 <h2>ILL requests history</h2>
31                 [% INCLUDE 'ill-list-table.inc' %]
32             </main>
33         </div> <!-- .col-sm-10.col-sm-push-2 -->
34
35         <div class="col-sm-2 col-sm-pull-10">
36             <aside>
37                 [% INCLUDE 'circ-menu.inc' %]
38             </aside>
39         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
40     </div> <!-- .row -->
41
42     [% MACRO jsinclude BLOCK %]
43         [% INCLUDE 'datatables.inc' %]
44         [% INCLUDE 'columns_settings.inc' %]
45         [% INCLUDE 'calendar.inc' %]
46         [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
47         <script>
48             var prefilters = '[% prefilters | html %]';
49             // Set column settings
50             var columns_settings = [% ColumnsSettings.GetColumns( 'illrequests', 'ill-requests', 'ill-requests', 'json' ) %];
51         </script>
52         [% INCLUDE 'ill-list-table-strings.inc' %]
53         [% Asset.js("js/ill-list-table.js") | $raw %]
54     [% END %]
55
56 [% INCLUDE 'intranet-bottom.inc' %]