Bug 13495 [QA Followup] - Re-word "Renew or return" button as well
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / checkouts-table.inc
1 <div id="checkouts">
2     [% IF ( issuecount ) %]
3         <div id="issues-table-loading-message">
4             <p>
5                 <a id="issues-table-load-now-button" href="#" class="btn"><i class="icon-book"></i> Show checkouts</a>
6             </p>
7         </div>
8         <form name="issues" action="/cgi-bin/koha/tools/export.pl" method="post" class="checkboxed">
9             <table id="issues-table" style="width: 100% !Important;">
10                 <thead>
11                     <tr>
12                         <th scope="col">&nbsp;</th>
13                         <th scope="col">&nbsp;</th>
14                         <th scope="col">Due date</th>
15                         <th scope="col">Due date</th>
16                         <th scope="col">Title</th>
17                         <th scope="col">Item type</th>
18                         <th scope="col">Checked out on</th>
19                         <th scope="col">Checked out from</th>
20                         <th scope="col">Call no</th>
21                         <th scope="col">Charge</th>
22                         <th scope="col">Price</th>
23                         <th scope="col">Renew <p class="column-tool"><a href="#" id="CheckAllRenewals">select all</a> | <a href="#" id="UncheckAllRenewals">none</a></p></th>
24                         <th scope="col">Check in <p class="column-tool"><a href="#" id="CheckAllCheckins">select all</a> | <a href="#" id="UncheckAllCheckins">none</a></p></th>
25                         <th scope="col">Export <p class="column-tool"><a href="#" id="CheckAllExports">select all</a> | <a href="#" id="UncheckAllExports">none</a></p></th>
26                     </tr>
27                 </thead>
28                 [% INCLUDE 'checkouts-table-footer.inc' %]
29             </table>
30
31             <label for="issues-table-load-immediately">Always show checkouts immediately</label>
32             <input id="issues-table-load-immediately" type="checkbox" />
33
34             <div id="issues-table-actions">
35                 <fieldset class="action">
36                     [% IF ( CAN_user_circulate_override_renewals ) %]
37                         [% IF ( AllowRenewalLimitOverride ) %]
38                             <label for="override_limit">Override renewal limit:</label>
39                             <input type="checkbox" name="override_limit" id="override_limit" value="1" />
40                         [% END %]
41                     [% END %]
42                     <button class="btn" id="RenewCheckinChecked"><i class="icon-check"></i> Renew or check in selected items</button>
43                     <button class="btn" id="RenewAll"><i class="icon-book"></i> Renew all</button>
44                 </fieldset>
45
46                 [% IF ( exports_enabled ) %]
47                     <fieldset>
48                         <label for="output_format"><b>Export checkouts using format:</b></label>
49                         <select name="output_format" id="output_format">
50                             <option value="iso2709_995">ISO2709 with items</option>
51                             <option value="iso2709">ISO2709 without items</option>
52                             [% IF Koha.Preference('ExportWithCsvProfile') %]
53                                 <option value="csv">CSV</option>
54                             [% END %]
55                         </select>
56
57                        <label for="export_remove_fields">Don't export fields:</label> <input type="text" id="export_remove_fields" name="export_remove_fields" value="[% export_remove_fields %]" title="Use for iso2709 exports" />
58                         <input type="hidden" name="op" value="export" />
59                         <input type="hidden" id="output_format" name="output_format" value="iso2709" />
60                         <input type="hidden" id="dont_export_item" name="dont_export_item" value="0" />
61                         <input type="hidden" id="record_type" name="record_type" value="bibs" />
62                         <button class="btn btn-small" id="export_submit"><i class="icon-download-alt"></i> Export</button>
63                     </fieldset>
64                 [% END %]
65             </div>
66         </form>
67     [% ELSE %]
68         <p>Patron has nothing checked out.</p>
69     [% END %]
70 </div>