Bug 35307: Add a hidden input for expired holds
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / patron-return-claims.inc
1 <p id="return-claims-controls">
2     [% IF ( patron.return_claims.resolved.count > 0 || patron.return_claims.unresolved.count > 0 ) %]
3         <a id="show_all_claims" class="ctrl_link" href="#">Show all [% patron.return_claims.count | html %] claim(s)</a>
4         <a id="show_unresolved_claims" class="ctrl_link disabled" href="#">Show [% patron.return_claims.unresolved.count | html %] unresolved claims</a>
5     [% ELSE %]
6         <a id="show_all_claims" class="ctrl_link" href="#"></a>
7         <a id="show_unresolved_claims" class="ctrl_link disabled" href="#"></a>
8     [% END %]
9 </p>
10 <table id="return-claims-table" class="table table-bordered table-striped">
11     <thead>
12         <tr>
13             <th class="return-claim-id">Claim ID</th>
14             <th class="return-claim-id">Resolved?</th>
15             <th class="return-claim-record-title anti-the">Title</th>
16             <th class="return-claim-notes">Notes</th>
17             <th class="return-claim-created-on">Created on</th>
18             <th class="return-claim-created-on">Created on</th>
19             <th class="return-claim-updated-on">Updated on</th>
20             <th class="return-claim-updated-on">Updated on</th>
21             <th class="return-claim-resolution">Resolution</th>
22             <th class="return-claim-actions NoSort">&nbsp;</th>
23         </tr>
24     </thead>
25 </table>