Beginning redesign of the OPAC. At this stage it's a move to make it more like the...
[koha-ffzg.git] / koha-tmpl / opac-tmpl / prog / en / modules / 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 </head>
4 <body>
5 <!-- TMPL_INCLUDE name="masthead.inc" -->
6 <!-- TMPL_INCLUDE name="navigation.inc" -->
7
8 <!--CONTENT-->
9     <!-- TMPL_LOOP NAME="BORROWER_INFO" -->
10         <!-- TMPL_INCLUDE name="usermenu.inc" -->
11         <h1>Account for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></h1>
12     <!-- /TMPL_LOOP -->
13     
14     <!-- TMPL_IF NAME="ACCOUNT_LINES" -->
15         <h3>Fines and Charges</h3>
16         <table>
17             <thead>
18                 <tr>
19                     <th>Date</th>
20                     <th>Description</th>
21                     <th>Fine Amount</th>
22                     <th>Amount Outstanding</th>
23                 </tr>
24             </thead>
25             
26             <tfoot>
27             <tr>
28                 <th colspan="3">Total Due</th>
29                 <td class="sum">$<!-- TMPL_VAR NAME="total" --></td>
30             </tr>
31             </tfoot>
32             
33             <tbody>
34                 <!-- TMPL_LOOP NAME="ACCOUNT_LINES" -->
35                     <!-- TMPL_IF NAME="odd" --><tr class="highlight"><!-- TMPL_ELSE --><tr><!-- /TMPL_IF -->
36                         <td><!-- TMPL_VAR NAME="date" --></td>
37                         <td><!-- TMPL_VAR NAME="description" -->
38                         <!-- TMPL_IF NAME="print_title" --><!-- TMPL_VAR NAME="title" --><!-- /TMPL_IF --></td>
39                         <!-- TMPL_IF NAME="amountcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="amount" --></td>
40                         <!-- TMPL_IF NAME="amountoutstandingcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="amountoutstanding" --></td>
41                     </tr>
42                 <!-- /TMPL_LOOP -->
43             </tbody>
44         
45         </table>
46     <!-- TMPL_ELSE -->
47         <h4>You have no Fines or Charges</h4>
48     <!-- /TMPL_IF -->
49     
50 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->