Bug 14915: (QA followup) Replace fa-downlowd-alt with fa-download
[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="fa fa-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">Location</th>
19                         <th scope="col">Checked out on</th>
20                         <th scope="col">Checked out from</th>
21                         <th scope="col">Call no</th>
22                         <th scope="col">Charge</th>
23                         <th scope="col">Fine</th>
24                         <th scope="col">Price</th>
25                         <th scope="col">Renew <p class="column-tool"><a href="#" id="CheckAllRenewals">select all</a> | <a href="#" id="UncheckAllRenewals">none</a></p></th>
26                         <th scope="col">Check in <p class="column-tool"><a href="#" id="CheckAllCheckins">select all</a> | <a href="#" id="UncheckAllCheckins">none</a></p></th>
27                         <th scope="col">Export <p class="column-tool"><a href="#" id="CheckAllExports">select all</a> | <a href="#" id="UncheckAllExports">none</a></p></th>
28                     </tr>
29                 </thead>
30                 [% INCLUDE 'checkouts-table-footer.inc' %]
31             </table>
32
33             <label for="issues-table-load-immediately">Always show checkouts immediately</label>
34             <input id="issues-table-load-immediately" type="checkbox" />
35
36             <div id="issues-table-actions">
37                 <fieldset class="action">
38                     [% IF ( CAN_user_circulate_override_renewals ) %]
39                         [% IF ( AllowRenewalLimitOverride ) %]
40                             <label for="override_limit">Override renewal limit:</label>
41                             <input type="checkbox" name="override_limit" id="override_limit" value="1" />
42                         [% END %]
43                     [% END %]
44                     <button class="btn" id="RenewCheckinChecked"><i class="fa fa-check"></i> Renew or check in selected items</button>
45                     <button class="btn" id="RenewAll"><i class="fa fa-book"></i> Renew all</button>
46                 </fieldset>
47
48                 [% IF ( exports_enabled ) %]
49                     <fieldset>
50                         <label for="output_format"><b>Export checkouts using format:</b></label>
51                         <select name="output_format" id="output_format">
52                             <option value="iso2709_995">ISO2709 with items</option>
53                             <option value="iso2709">ISO2709 without items</option>
54                             [% IF Koha.Preference('ExportWithCsvProfile') %]
55                                 <option value="csv">CSV</option>
56                             [% END %]
57                         </select>
58
59                        <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" />
60                         <input type="hidden" name="op" value="export" />
61                         <input type="hidden" id="output_format" name="output_format" value="iso2709" />
62                         <input type="hidden" id="dont_export_item" name="dont_export_item" value="0" />
63                         <input type="hidden" id="record_type" name="record_type" value="bibs" />
64                         <button class="btn btn-small" id="export_submit"><i class="fa fa-download"></i> Export</button>
65                     </fieldset>
66                 [% END %]
67             </div>
68         </form>
69     [% ELSE %]
70         <p>Patron has nothing checked out.</p>
71     [% END %]
72 </div>