Koha/koha-tmpl/intranet-tmpl/default/en/boraccount.tmpl
2005-06-20 14:21:39 +00:00

39 lines
1.2 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="members-top.inc" -->
<div id="mainbloc">
<!-- The manual invoice and credit buttons -->
<h1>Account for <a href="/cgi-bin/koha/members/moremember.pl?bornum=<!-- TMPL_VAR NAME="bornum" -->"><!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></a></h1><P>
<a class="button" href="/cgi-bin/koha/maninvoice.pl?bornum=<!-- TMPL_VAR NAME="bornum" -->">Create Manual Invoice</a>
&nbsp;
<a class="button" href="/cgi-bin/koha/mancredit.pl?bornum=<!-- TMPL_VAR NAME="bornum" -->">Create Manual Credit</a>
<!-- The table with the account items -->
<table>
<tr>
<th>FINES &amp; CHARGES</th>
<th>AMOUNT</th>
<th>STILL OWING</th>
</tr>
<!-- TMPL_LOOP NAME="accounts" -->
<tr>
<td><!-- TMPL_VAR NAME="date" --> <!-- TMPL_VAR NAME="description" --><!-- TMPL_IF NAME="printtitle" --> <!-- TMPL_VAR NAME="title" --><!-- /TMPL_IF --></td>
<td><!-- TMPL_VAR NAME="amount" --></td>
<td><!-- TMPL_VAR NAME="amountoutstanding" --></td>
</tr>
<!-- /TMPL_LOOP -->
<tr>
<th>Total Due</th>
<th colspan="2"><!-- TMPL_VAR NAME="total" --></th>
</tr>
</table>
<!-- endmenu (member) -->
</div>
<!-- TMPL_INCLUDE NAME="members-bottom.inc" -->