Koha/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table-footer.inc
Jonathan Druart 8c324dd2a0 Bug 13492: Add the column configuration for the checkouts table - circulation.pl
Test plan:
1/ Verify that you can show/hide columns on the checkouts table (circulation.pl).
2/ Play with the column configuration admin page (admin/columns_settings.pl),
and confirm the behavior is correct (depends on what you have selected).

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
2015-04-24 09:41:11 -03:00

13 lines
655 B
HTML

<tfoot>
<tr>
<td colspan="9" style="text-align: right; font-weight:bold;">Totals:</td>
<td id="totaldue">[% totaldue %]</td>
<td id="totalfine">[% finetotal %]</td>
<td id="totalprice">[% totalprice %]</td>
<td colspan="3"><div class="date-select">
<p><label for="newduedate">Renewal due date:</label> <input type="text" size="12" id="newduedate" name="newduedate" value="[% newduedate %]" readonly="readonly" />
</p>
<p><label for="exemptfine">Forgive fines on return: <input type="checkbox" id="exemptfine" name="exemptfine" value="1" /></label></p></div>
</td>
</tr>
</tfoot>