Koha/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table-footer.inc
Jonathan Druart d7cfdb45e5 Bug 13492: Add the location column to the checkouts tables
Test plan:
1/ Verify that the location column is correctly displayed on the
checkouts tables (circ/circulation.pl and members/moremember.pl).
2/ Verify that you can hide/show this column (using the admin page
and/or the ColVis DT plugin).

Signed-off-by: Aleisha <aleishaamohia@hotmail.com>

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

13 lines
656 B
HTML

<tfoot>
<tr>
<td colspan="10" 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>