Bug 29648: (follow-up) Add missing raw filter
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / readingrec.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE KohaDates %]
4 [% USE Koha %]
5 [% USE AuthorisedValues %]
6 [% USE Branches %]
7 [% USE TablesSettings %]
8 [% SET footerjs = 1 %]
9 [% INCLUDE 'doc-head-open.inc' %]
10 <title>Circulation history for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
11 [% INCLUDE 'doc-head-close.inc' %]
12 </head>
13
14 <body id="pat_readingrec" class="pat">
15 [% INCLUDE 'header.inc' %]
16 [% INCLUDE 'patron-search-header.inc' %]
17
18 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
19     <ol>
20         <li>
21             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
22         </li>
23         <li>
24             <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
25         </li>
26         <li>
27             <a href="#" aria-current="page">
28                 Circulation history for [% INCLUDE 'patron-title.inc' %]
29             </a>
30         </li>
31     </ol>
32 </nav>
33
34 <div class="main container-fluid">
35     <div class="row">
36         <div class="col-sm-10 col-sm-push-2">
37             <main>
38
39 [% INCLUDE 'members-toolbar.inc' %]
40 <h1>Circulation history</h1>
41
42 [% UNLESS Koha.Preference('intranetreadinghistory') %]
43     <div class="dialog alert">Staff members are not allowed to access patron's checkout history</div>
44 [% ELSIF is_anonymous %]
45     <div class="dialog alert">This is the anonymous patron, so no circulation history is displayed. To get a list of anonymized loans, please run a report.</div>
46 [% ELSIF ( patron.privacy == 2)  %]
47     <div class="dialog message">This patron has set the privacy rules to never keeping a circulation history.</div>
48 [% ELSIF ( !loop_reading ) %]
49     <div class="dialog message">This patron has no circulation history.</div>
50 [% ELSE %]
51 <form action="/cgi-bin/koha/members/readingrec.pl" method="get"><input type="hidden" name="borrowernumber" id="borrowernumber" value="[% patron.borrowernumber | html %]" /></form>
52
53
54 <div id="tabs" class="toptabs">
55   [% IF Koha.Preference('OnSiteCheckouts') %]
56   <ul class="nav nav-tabs" role="tablist">
57     <li role="presentation" class="active"><a href="#readingrec" aria-controls="readingrec" role="tab" data-toggle="tab" data-tabname="all" id="tab_all">All</a></li>
58     <li role="presentation"><a href="#readingrec" aria-controls="readingrec" role="tab" data-toggle="tab" data-tabname="checkouts" id="tab_checkout">Checkouts</a></li>
59     <li role="presentation"><a href="#readingrec" aria-controls="readingrec" role="tab" data-toggle="tab" id="tab_onsite_checkout" data-tabname="onsite">On-site checkouts</a></li>
60   </ul>
61   <div class="tab-content">
62       <div id="readingrec" role="tabpanel" class="tab-pane active">
63   [% ELSE %]
64     <div id="readingrec">
65   [% END %]
66     <table id="table_readingrec">
67       <thead>
68         <tr>
69         <th style="display:none;">Type</th>
70         <th>Date</th>
71         <th class="anti-the">Title</th>
72         <th>Author</th>
73         <th>Call number</th>
74         <th>Barcode</th>
75         <th>Number of renewals</th>
76         <th>Checked out on</th>
77         <th>Checked out from</th>
78         [% IF Koha.Preference('RecordStaffUserOnCheckout') %]
79         <th>Checked out by</th>
80         [% END %]
81         <th>Date due</th>
82         <th>Return date</th>
83         </tr>
84       </thead>
85       <tbody>
86       [% FOREACH issue IN loop_reading %]
87         [% IF  issue.returndate  %]<tr>[% ELSE %]<tr class="onissue">[% END %]
88           <td style="display:none;">
89             [% IF issue.onsite_checkout %][% issuetype = 'onsite_checkout' | html %]
90             [% ELSE %][% issuetype = 'standard_checkout' | html %]
91             [% END %]
92             [% issuetype | html %]
93           </td>
94           <td data-order="[% issue.issuestimestamp | html %]">
95               [% issue.issuestimestamp | $KohaDates  with_hours => 1 %]
96           </td>
97           <td>
98             [% INCLUDE 'biblio-title.inc' biblio=issue link = 1 %]
99             </td>
100
101           <td>[% issue.author | html %]</td>
102
103           <td>
104             [% IF issue.classification %]
105                 [% issue.classification | html %]
106             [% ELSE %]
107                 [% issue.itemcallnumber | html %]
108             [% END %]
109           </td>
110
111           <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% issue.itemnumber | uri %]&amp;biblionumber=[% issue.biblionumber | uri %]&amp;bi=[% issue.biblioitemnumber | uri %]#item[% issue.itemnumber | uri %]">[% issue.barcode | html %]</a></td>
112           <td>[% issue.renewals | html %]</td>
113           <td data-order="[% issue.issuedate | html %]">
114               [% issue.issuedate |$KohaDates  with_hours => 1 %]
115           </td>
116           <td>[% Branches.GetName( issue.branchcode ) | html %]</td>
117           [% IF Koha.Preference('RecordStaffUserOnCheckout') %]
118           <td><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% issue.issuer_id | uri %]">[% issue.firstname | html %] [% issue.surname | html %]</a></td>
119           [% END %]
120           <td data-order="[% issue.date_due | html %]">
121               [% issue.date_due |$KohaDates  with_hours => 1 %]
122           </td>
123             [% IF  issue.returndate %]
124                 <td data-order="[% issue.returndate | html %]">
125                 [% issue.returndate |$KohaDates  with_hours => 1 %]
126             [% ELSE %]
127                 <td data-order="checked out">
128                 <small>Checked out</small>
129             [% END %]
130           </td>
131         </tr>
132       [% END %]
133       </tbody>
134     </table>
135   </div>
136   [% IF Koha.Preference('OnSiteCheckouts') %]
137     </div> <!-- /.tab-content -->
138   [% END %]
139 </div>
140 [% END %]
141
142             </main>
143         </div> <!-- /.col-sm-10.col-sm-push-2 -->
144
145         <div class="col-sm-2 col-sm-pull-10">
146             <aside>
147                 [% INCLUDE 'circ-menu.inc' %]
148             </aside>
149         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
150      </div> <!-- /.row -->
151
152 [% MACRO jsinclude BLOCK %]
153     [% INCLUDE 'str/members-menu.inc' %]
154     [% Asset.js("js/members-menu.js") | $raw %]
155     [% INCLUDE 'datatables.inc' %]
156     [% INCLUDE 'columns_settings.inc' %]
157     <script id="js">
158         $(document).ready(function() {
159             var table_settings = [% TablesSettings.GetTableSettings('members', 'checkouthistory', 'checkouthistory-table', 'json') | $raw %];
160             var table = KohaTable("table_readingrec", {
161                 "sPaginationType": "full",
162                 "aaSorting": [[10, 'desc']]
163             }, table_settings);
164
165             $("#tabs a[data-toggle='tab']").on("shown.bs.tab", function (e) {
166                 active_tab = $(this).data("tabname");
167                 if( active_tab == "checkouts" ){
168                     table.fnFilter("standard_checkout", 0);
169                 } else if( active_tab == "onsite" ){
170                     table.fnFilter("onsite_checkout", 0);
171                 } else {
172                     table.fnFilter('', 0);
173                 }
174             });
175         });
176     </script>
177 [% END %]
178
179 [% INCLUDE 'intranet-bottom.inc' %]