koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha/koha-tmpl/opac-tmpl/prog/en opac-account.tmpl [rel_3_0]


From: paul poulain
Subject: [Koha-cvs] koha/koha-tmpl/opac-tmpl/prog/en opac-account.tmpl [rel_3_0]
Date: Mon, 30 Oct 2006 10:16:10 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_3_0
Changes by:     paul poulain <tipaul>   06/10/30 10:16:10

Modified files:
        koha-tmpl/opac-tmpl/prog/en: opac-account.tmpl 

Log message:
        reindenting

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/opac-tmpl/prog/en/opac-account.tmpl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1&r2=1.1.2.1

Patches:
Index: opac-account.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/opac-tmpl/prog/en/opac-account.tmpl,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -b -r1.1 -r1.1.2.1
--- opac-account.tmpl   3 Mar 2006 20:10:26 -0000       1.1
+++ opac-account.tmpl   30 Oct 2006 10:16:10 -0000      1.1.2.1
@@ -5,42 +5,46 @@
 
 <!--CONTENT-->
 
-<!-- TMPL_LOOP NAME="BORROWER_INFO" -->
 <div id="main">
-<h1>Account for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR 
NAME="surname" --></h1>
-<!-- /TMPL_LOOP -->
+    <!-- TMPL_LOOP NAME="BORROWER_INFO" -->
+        <!-- TMPL_INCLUDE name="usermenu.inc" -->
+        <h1>Account for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR 
NAME="surname" --></h1>
+    <!-- /TMPL_LOOP -->
 
-<ul><li>        <a href="/cgi-bin/koha/opac-account.pl">my fines</a> </li> 
<li> 
-       <a href="/cgi-bin/koha/opac-userdetails.pl">my personal details</a>     
        <!-- TMPL_IF name="OpacPasswordChange" --> </li> <li> <a 
href="/cgi-bin/koha/opac-passwd.pl">change my password</a> <!-- /TMPL_IF 
--><!-- TMPL_IF NAME="opacreadinghistory" --></li> <li> <a 
href="/cgi-bin/koha/opac-readingrecord.pl">my reading history</a><!-- /TMPL_IF 
--> <!-- TMPL_IF name="virtualshelves" --> </li> <li> <a 
href="/cgi-bin/koha/opac-shelves.pl" class="button">my book lists</a> <!-- 
/TMPL_IF --><!-- TMPL_IF name="suggestion" --></li> <li> <a 
href="/cgi-bin/koha/opac-suggestions.pl">purchase suggestions</a><!-- /TMPL_IF 
--></li></ul>
+    <!-- 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>
 
-<!-- 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>
 
-<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>
 
-<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 -->
+        </table>
+    <!-- TMPL_ELSE -->
+        <h4>You have no Fines or Charges</h4>
+    <!-- /TMPL_IF -->
 </div>
 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->




reply via email to

[Prev in Thread] Current Thread [Next in Thread]