]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/templates/default/opac/myopac/circs.tt2
minor circs page tweaks: disable renew option when no renewals left; make title...
[Evergreen.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
47                 <tr [% IF loop.count % 2 == 1 %] class='circ-table-odd' [% END %]>
48                     <td><a href='../record/[% circ.circ.target_copy.call_number.record.id %]'>[% attrs.title %]</a></td>
49                     <td><a href='../results?query=au:[% attrs.author | url %]'>[% attrs.author %]</a></td>
50                     <td>[% date.format(ctx.parse_datetime(circ.circ.due_date),'%Y-%m-%d') %]</td>
51                     <td><em>[% circ.circ.renewal_remaining %]</em></td>
52                     <td><input name='circ' value='[% circ.circ.id %]' type='checkbox' 
53                         [% IF circ.circ.renewal_remaining < 1 %] disabled='disabled' [% END %]/></td>
54                 </tr>
55
56                 [% IF circ.renewal_response and circ.renewal_response.textcode != 'SUCCESS' %]
57                 <tr [% IF loop.count % 2 == 1 %] class='circ-table-odd' [% END %]>
58                     <td colspan='0'>
59                         <div class='failure-text'>
60                             [% circ.renewal_response.textcode %] 
61                             [% IF circ.renewal_response.payload.fail_part and circ.renewal_response.payload.fail_part != circ.renewal_response.textcode %]
62                                 [% circ.renewal_response.payload.fail_part %]
63                             [% END %]
64                         </div>
65                     </td>
66                 </tr>
67                 [% END %]
68
69             [% END %]
70         </tbody>
71     </table>
72 </form>
73
74 [% END %]