Bug 30952: Staff interface redesign (header)
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / recallshistory.tt
1 [% USE raw %]
2 [% USE KohaDates %]
3 [% USE Koha %]
4 [% USE Asset %]
5 [% SET footerjs = 1 %]
6 [% INCLUDE 'doc-head-open.inc' %]
7 <title>Recalls history for [% INCLUDE 'patron-title.inc' %]</title>
8 [% INCLUDE 'doc-head-close.inc' %]
9 </head>
10
11 <body id="recalls_history" class="pat">
12     [% WRAPPER 'header.inc' %]
13         [% INCLUDE 'patron-search-header.inc' %]
14     [% END %]
15
16     <div id="breadcrumbs">
17         <a href="/cgi-bin/koha/mainpage.pl"><i class="fa fa-home"></i></a> &rsaquo;
18         <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>  &rsaquo;
19         Recalls history for [% INCLUDE 'patron-title.inc' %]
20     </div>
21     <div class="main container-fluid">
22         <div class="row">
23             <div class="col-sm-10 col-sm-push-2">
24                 <main>
25                     [% INCLUDE 'members-toolbar.inc' %]
26                     <h1>Recalls history</h1>
27                     [% IF Koha.Preference('UseRecalls') %]
28                         <input type="checkbox" id="hide_old" name="hide_old" checked="checked">
29                         <label for="hide_old">Show old recalls</label>
30                         [% INCLUDE 'recalls.inc' %]
31                     [% ELSE %]
32                          <div class="dialog message">Recalls have not been enabled. Enable the <a href="/cgi-bin/koha/admin/preferences.pl?tab=circulation">UseRecalls</a> system preference to use recalls.</div>
33                     [% END %]
34                 </main>
35             </div>
36         <div class="col-sm-2 col-sm-pull-10">
37             <aside>
38                 [% INCLUDE 'circ-menu.inc' %]
39             </aside>
40         </div>
41     </div>
42
43 [% MACRO jsinclude BLOCK %]
44     [% INCLUDE 'datatables.inc' %]
45     [% INCLUDE 'columns_settings.inc' %]
46     [% Asset.js("js/recalls.js") | $raw %]
47 [% END %]
48
49 [% INCLUDE 'intranet-bottom.inc' %]