fines summary
[evergreen-equinox.git] / Open-ILS / web / templates / default / opac / myopac / circs.tt2
1 [% BLOCK html_head %]
2 <style>
3     table { width: 100%; text-align: center; padding: 20px; margin-top: 30px; }
4     table { border-collapse: collapse; }
5     table { padding: 3px; border-bottom: 1px solid #ddd; text-align: left;}
6     #action_div { width: 95%; }
7     .renew-summary { float:left; padding-right: 10px;}
8     #action-buttons { float:right; }
9     .circ-table-odd { background-color:#ded; }
10     .failure-text { font-weight: bold; color: red; }
11     #circ-form { margin-top: 20px; }
12 </style>
13 [% END %]
14
15 [% PROCESS "default/opac/common.tt2" %]
16 [% WRAPPER "default/opac/base.tt2" %]
17 [% INCLUDE "default/opac/myopac/_links.tt2" myopac_page = "circs" %]
18
19 <form method='POST' id='circ-form'>
20     <div id='action_div'>
21         [% IF ctx.success_renewals > 0 %]
22             <div class='renew-summary'><b>Successfully renewed [% ctx.success_renewals %] items.</b></div>
23         [% END %]
24         [% IF ctx.failed_renewals > 0 %]
25             <div class='renew-summary'><b>Failed to renew [% ctx.failed_renewals %] items.</b></div>
26         [% END %]
27         <div id='action-buttons'>
28             <button type='submit' value='renew' name='action'>Renew Selected</button>
29             <button type='submit' value='renew_all' name='action'>Renew All</button>
30         </div>
31     </div>
32     <table>
33         <thead>
34             <tr>
35                 <th>Title</th>
36                 <th>Author</th>
37                 <th>Due Date</th>
38                 <th>Renewals Remaining</th>
39                 <th>Select</th>
40             </tr>
41         </thead>
42         <tbody>
43             [% FOR circ IN ctx.circs %]
44                 [% attrs = {marc_xml => circ.marc_xml}; %]
45                 [% PROCESS get_marc_attrs args=attrs; %]
46                 <tr [% IF loop.count % 2 == 1 %] class='circ-table-odd' [% END %]>
47                     <td>[% attrs.title %]</td>
48                     <td>[% attrs.author %]</td>
49                     <td>[% date.format(ctx.parse_datetime(circ.circ.due_date),'%Y-%m-%d') %]</td>
50                     <td><em>[% circ.circ.renewal_remaining %]</em></td>
51                     <td><input name='circ' value='[% circ.circ.id %]' type='checkbox'/></td>
52                 </tr>
53                 [% IF circ.renewal_response and circ.renewal_response.textcode != 'SUCCESS' %]
54                 <tr [% IF loop.count % 2 == 1 %] class='circ-table-odd' [% END %]>
55                     <td colspan='0'>
56                         <div class='failure-text'>
57                             [% circ.renewal_response.textcode %] 
58                             [% IF circ.renewal_response.payload.fail_part and circ.renewal_response.payload.fail_part != circ.renewal_response.textcode %]
59                                 [% circ.renewal_response.payload.fail_part %]
60                             [% END %]
61                         </div>
62                     </td>
63                 </tr>
64                 [% END %]
65             [% END %]
66         </tbody>
67     </table>
68 </form>
69
70 [% END %]