html modified to be "translator" compatible
[koha.git] / koha-tmpl / opac-tmpl / default / en / opac-user.tmpl
1 <TMPL_INCLUDE NAME="opac-top.inc">
2
3 <TMPL_LOOP NAME="BORROWER_INFO">
4
5 <table align=right cellpadding=5 cellspacing=0 border=1 width=200 >
6         <tr   bgcolor="#fecc99" >
7                 <td><b>ARE OUR RECORDS CORRECT?</B></td>
8         </tr>
9         <tr>
10                 <td><font size=2 face="arial,helvetica">Library Card: <TMPL_VAR NAME="cardnumber"> <br/>
11                         <TMPL_VAR NAME="firstname"> <TMPL_VAR NAME="surname"> (<TMPL_VAR NAME="title">) <br>
12                         <TMPL_VAR NAME="streetaddress">, <TMPL_VAR NAME="city"><br>
13                         <TMPL_VAR NAME="phone"> (hm)<br>
14                         <TMPL_VAR NAME="faxnumber"> (wk)<br>
15                         <TMPL_VAR NAME="emailaddress"><br/>
16                         <p>Something new ?</p>
17                         <a href="/cgi-bin/koha/opac-userupdate.pl">Update Record</a>
18                 </td>
19         </tr>
20 </table>
21
22
23
24 <font size=6><em>Hi <TMPL_VAR NAME="firstname"> <TMPL_VAR NAME="surname"></em></font>
25 [<a href="/cgi-bin/koha/opac-main.pl?logout.x=1">Logout</a>]<p>
26
27
28 <TMPL_IF NAME="amountoverfive">
29         <table cellpadding=5 cellspacing=0 border=1>
30                 <tr bgcolor="#fecc99">
31                         <td>
32                                 <font face="arial,helvetica" color="red" size=+2><B>You have outstanding charges and fines of <TMPL_VAR NAME="amountoutstanding"></B></font>
33                         </td>
34                 </tr>
35         </table>
36 </TMPL_IF>
37
38 <TMPL_IF NAME="amountoverzero">
39         <table cellpadding=5 cellspacing=0 border=1>
40                 <tr bgcolor="#fecc99">
41                         <td>
42                                 <font face="arial,helvetica" size=+2>
43                                         <B>You have outstanding charges and fines of <TMPL_VAR NAME="amountoutstanding"></B>
44                                 </font>
45                         </td>
46                 </tr>
47         </table>
48 </TMPL_IF>
49
50 <TMPL_IF NAME"amountlessthanzero">
51         <table cellpadding=5 cellspacing=0 border=1>
52                 <tr bgcolor="#fecc99">
53                         <td>
54                                 <font face="arial,helvetica" size=+2>
55                                         <B>You have a credit of <TMPL_VAR NAME="amountoutstanding"></B>
56                                 </font>
57                         </td>
58                 </tr>
59         </table>
60 </TMPL_IF>
61 <a href='/cgi-bin/koha/opac-account.pl'>View Accounts</a>
62
63 </TMPL_LOOP>
64
65 <TMPL_IF NAME="waiting_count">
66         <table  cellpadding=5 cellspacing=0 border=0>
67                 <tr bgcolor="#fecc99" >
68                         <td colspan=2>
69                                 <font color="red" face="arial,helvetica" size=+2>
70                                         <B>     You have reserved items waiting:</B>
71                                 </font>
72                                 <P>
73                         </td>
74                 </tr>
75                 <TMPL_LOOP NAME="WAITING">
76                         <tr>
77                                 <td>
78                                         <b><TMPL_VAR NAME="btitle"></b></td><td>pick up at: <b><TMPL_VAR NAME="branch"></b>
79                                 </td>
80                         </tr>
81                 </TMPL_LOOP>
82         </table>
83 </TMPL_IF>
84
85 <p>
86
87 <TMPL_IF NAME="issues_count">
88
89         You have <TMPL_VAR NAME="issues_count"> items currently issued.<br>
90         <TABLE  CELLPADDING=5  CELLSPACING=0 border=1 >
91                 <TR VALIGN=TOP  bgcolor="#99cccc"  background='<TMPL_VAR NAME="themelang">/images/background-opac.gif'>
92                         <TD><B>Title</B></TD>
93                         <TD><B>Author</B></TD>
94                         <TD><B>Due date</B></TD>
95                         <TD><B>Itemtype</B></TD>
96                         <TD><B>Charges</B></TD>
97                         <TD><B>Current Loan</B></TD>
98                 </TR>
99                 <TMPL_LOOP NAME="ISSUES">
100                         <TR VALIGN=TOP>
101                                 <TD><TMPL_VAR NAME="title"></TD>
102                                 <TD><TMPL_VAR NAME="author"></TD>
103                                 <TD><TMPL_VAR NAME="date_due"></TD>
104                                 <TD><TMPL_VAR NAME="itemtype"></TD>
105                                 <TD><TMPL_IF NAME="charges">Yes<TMPL_ELSE>No</TMPL_IF></TD>
106                                 <TD><TMPL_IF NAME="status">Yes<TMPL_ELSE>No</TMPL_IF></TD>
107                         </TR>
108                 </TMPL_LOOP>
109         </table>
110 <TMPL_ELSE>
111 <p>You have no items on issue.</p>
112 </TMPL_IF>
113
114 <p>
115
116 <TMPL_IF NAME="reserves_count">
117         You have <TMPL_VAR NAME="reserves_count"> items currently reserved.<br>
118         <TABLE  CELLPADDING=5  CELLSPACING=0 border=1 >
119                 <TR VALIGN=TOP  bgcolor="#99cccc" background='<TMPL_VAR NAME="themelang">/images/background-opac.gif'>
120                         <TD><B>Title</B></TD>
121                         <TD><B>Author</B></TD>
122                         <TD><B>Reserve date</B></TD>
123                 </TR>
124                 <TMPL_LOOP NAME="RESERVES">
125                         <TR VALIGN=TOP>
126                         <TD><TMPL_VAR NAME="btitle"></TD>
127                         <TD><TMPL_VAR NAME="author"></TD>
128                         <TD><TMPL_VAR NAME="reservedate"></TD>
129                         </TR>
130                 </TMPL_LOOP>
131         </table>
132 </TMPL_IF>
133
134 <TMPL_INCLUDE NAME="opac-bottom.inc">
135