Bug 28854: Record and display who lost the item
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / patron-return-claims.inc
1 <div id="return-claims">
2     <p id="return-claims-controls">
3         [% IF ( patron.return_claims.resolved.count > 0 || patron.return_claims.unresolved.count > 0 ) %]
4             <a id="show_all_claims" class="ctrl_link" href="#">Show all [% patron.return_claims.count | html %] claim(s)</a>
5             <a id="show_unresolved_claims" class="ctrl_link disabled" href="#">Show [% patron.return_claims.unresolved.count | html %] unresolved claims</a>
6         [% ELSE %]
7             <a id="show_all_claims" class="ctrl_link" href="#"></a>
8             <a id="show_unresolved_claims" class="ctrl_link disabled" href="#"></a>
9         [% END %]
10     </p>
11   <table id="return-claims-table" class="table table-bordered table-striped">
12       <thead>
13           <tr>
14               <th class="return-claim-id">Claim ID</th>
15               <th class="return-claim-id">Resolved?</th>
16               <th class="return-claim-record-title anti-the">Title</th>
17               <th class="return-claim-notes">Notes</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-resolution">Resolution</th>
21               <th class="return-claim-actions NoSort">&nbsp;</th>
22           </tr>
23       </thead>
24   </table>
25 </div>