prog templates : completed, fixed & xhtml valid
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / boraccount.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Account for  <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --><!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2
3 <!-- The table with the account items -->
4
5 <table>
6 <caption>Account for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></caption>
7   <tr>
8         <th>Date</th>
9     <th>Description of Charges</th>
10     <th>Amount</th>
11     <th>Still Owed</th>
12   </tr>
13
14   <!-- TMPL_LOOP NAME="accounts" -->
15
16    <!-- TMPL_IF NAME="toggle" --> <tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
17       <td><!-- TMPL_VAR NAME="date" --></td>
18       <td><!-- TMPL_VAR NAME="description" --><!-- TMPL_IF NAME="printtitle" --> <!-- TMPL_VAR NAME="title" --><!-- /TMPL_IF --></td>
19       <!-- TMPL_IF NAME="amountcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="amount" --></td>
20       <!-- TMPL_IF NAME="amountoutstandingcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="amountoutstanding" --></td>
21     </tr>
22
23   <!-- /TMPL_LOOP -->
24 <tfoot>
25   <tr>
26     <td colspan="3">Total Due</td>
27     <!-- TMPL_IF NAME="totalcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="total" --></td>
28   </tr>
29   </tfoot>
30 </table>
31 <!-- The manual invoice and credit buttons -->
32
33 <form action="/cgi-bin/koha/maninvoice.pl" method="get"><input type="hidden" name="bornum" value="<!-- TMPL_VAR NAME="bornum" -->" /><input type="submit" value="Create Manual Invoice" /></form>
34
35 <form action="/cgi-bin/koha/mancredit.pl" method="get"> <input type="hidden" name="bornum" value="<!-- TMPL_VAR NAME="bornum" -->" /> <input type="submit" value="Create Manual Credit" /></form>
36
37 <form action="/cgi-bin/koha/members/moremember.pl" method="get"><input type="hidden" name="bornum" value="<!-- TMPL_VAR NAME="bornum" -->" /> <input type="submit" value="Return to Patron Record" /></form>
38
39
40 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->