fixing dirty bug : ccl.properties is case sensitive. CountAuthority failed, and thus...
[koha.git] / koha-tmpl / opac-tmpl / prog / en / opac-account.tmpl
1 <!-- TMPL_INCLUDE name="doc-head-open.inc" --><!-- TMPL_VAR NAME="LibraryNameTitle" --> Catalog -- Account for <!-- TMPL_LOOP name="BORROWER_INFO" --><!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR name="surname" --><!-- /TMPL_LOOP -->
2 <!-- TMPL_INCLUDE name="doc-head-close.inc" -->
3 <!-- TMPL_INCLUDE name="masthead.inc" -->
4 <!-- TMPL_INCLUDE name="navigation.inc" -->
5
6 <!--CONTENT-->
7     <!-- TMPL_LOOP NAME="BORROWER_INFO" -->
8         <!-- TMPL_INCLUDE name="usermenu.inc" -->
9         <h1>Account for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></h1>
10     <!-- /TMPL_LOOP -->
11     
12     <!-- TMPL_IF NAME="ACCOUNT_LINES" -->
13         <h3>Fines and Charges</h3>
14         <table>
15             <thead>
16                 <tr>
17                     <th>Date</th>
18                     <th>Description</th>
19                     <th>Fine Amount</th>
20                     <th>Amount Outstanding</th>
21                 </tr>
22             </thead>
23             
24             <tfoot>
25             <tr>
26                 <th colspan="3">Total Due</th>
27                 <td class="sum">$<!-- TMPL_VAR NAME="total" --></td>
28             </tr>
29             </tfoot>
30             
31             <tbody>
32                 <!-- TMPL_LOOP NAME="ACCOUNT_LINES" -->
33                     <!-- TMPL_IF NAME="odd" --><tr class="highlight"><!-- TMPL_ELSE --><tr><!-- /TMPL_IF -->
34                         <td><!-- TMPL_VAR NAME="date" --></td>
35                         <td><!-- TMPL_VAR NAME="description" -->
36                         <!-- TMPL_IF NAME="print_title" --><!-- TMPL_VAR NAME="title" --><!-- /TMPL_IF --></td>
37                         <!-- TMPL_IF NAME="amountcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="amount" --></td>
38                         <!-- TMPL_IF NAME="amountoutstandingcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="amountoutstanding" --></td>
39                     </tr>
40                 <!-- /TMPL_LOOP -->
41             </tbody>
42         
43         </table>
44     <!-- TMPL_ELSE -->
45         <h4>You have no Fines or Charges</h4>
46     <!-- /TMPL_IF -->
47     
48 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->