removing a lot of useless files in misc
[koha.git] / koha-tmpl / intranet-tmpl / prog / fr / members / boraccount.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Compte de <!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-members.inc" -->
7
8 <!-- The table with the account items -->
9
10 <h1>Compte de <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></h1>
11
12 <table>
13   <tr>
14         <th>Date</th>
15     <th>Description des frais</th>
16     <th>Montant</th>
17     <th>Dettes</th>
18   </tr>
19
20   <!-- TMPL_LOOP NAME="accounts" -->
21
22    <!-- TMPL_IF NAME="toggle" --> <tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
23       <td><!-- TMPL_VAR NAME="date" --></td>
24       <td><!-- TMPL_VAR NAME="description" --><!-- TMPL_IF NAME="printtitle" --> <!-- TMPL_VAR NAME="title" --><!-- /TMPL_IF --></td>
25       <!-- TMPL_IF NAME="amountcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF --><!-- TMPL_VAR NAME="amount" --> €</td>
26       <!-- TMPL_IF NAME="amountoutstandingcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF --><!-- TMPL_VAR NAME="amountoutstanding" --> €</td>
27     </tr>
28
29   <!-- /TMPL_LOOP -->
30 <tfoot>
31   <tr>
32     <td colspan="3">Total dû</td>
33     <!-- TMPL_IF NAME="totalcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF --><!-- TMPL_VAR NAME="total" --> €</td>
34   </tr>
35   </tfoot>
36 </table>
37 <!-- The manual invoice and credit buttons -->
38
39 <form action="/cgi-bin/koha/members/maninvoice.pl" method="get"><input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernumber" -->" /><input type="submit" value="Créer une facture manuelle"></form>
40
41 <form action="/cgi-bin/koha/members/mancredit.pl" method="get"> <input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernumber" -->" /> <input type="submit" value="Créer un crédit manuel"></form>
42
43 <form action="/cgi-bin/koha/members/moremember.pl" method="get"><input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernumber" -->" /> <input type="submit" value="Retour à la fiche d'adhérent"></form>
44
45
46 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->