Koha/koha-tmpl/opac-tmpl/prog/en/modules/opac-account.tmpl

50 lines
2.2 KiB
Cheetah

<!-- 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 -->
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
</head>
<body>
<!-- TMPL_INCLUDE name="masthead.inc" -->
<!-- TMPL_INCLUDE name="navigation.inc" -->
<!--CONTENT-->
<!-- TMPL_LOOP NAME="BORROWER_INFO" -->
<!-- TMPL_INCLUDE name="usermenu.inc" -->
<h1>Account for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></h1>
<!-- /TMPL_LOOP -->
<!-- TMPL_IF NAME="ACCOUNT_LINES" -->
<h3>Fines and Charges</h3>
<table>
<thead>
<tr>
<th>Date</th>
<th>Description</th>
<th>Fine Amount</th>
<th>Amount Outstanding</th>
</tr>
</thead>
<tfoot>
<tr>
<th colspan="3">Total Due</th>
<td class="sum">$<!-- TMPL_VAR NAME="total" --></td>
</tr>
</tfoot>
<tbody>
<!-- TMPL_LOOP NAME="ACCOUNT_LINES" -->
<!-- TMPL_IF NAME="odd" --><tr class="highlight"><!-- TMPL_ELSE --><tr><!-- /TMPL_IF -->
<td><!-- TMPL_VAR NAME="date" --></td>
<td><!-- TMPL_VAR NAME="description" -->
<!-- TMPL_IF NAME="print_title" --><!-- TMPL_VAR NAME="title" --><!-- /TMPL_IF --></td>
<!-- TMPL_IF NAME="amountcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="amount" --></td>
<!-- TMPL_IF NAME="amountoutstandingcredit" --><td class="credit"><!-- TMPL_ELSE --><td class="debit"><!-- /TMPL_IF -->$<!-- TMPL_VAR NAME="amountoutstanding" --></td>
</tr>
<!-- /TMPL_LOOP -->
</tbody>
</table>
<!-- TMPL_ELSE -->
<h4>You have no Fines or Charges</h4>
<!-- /TMPL_IF -->
<!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->