css & html fixes
[koha.git] / koha-tmpl / opac-tmpl / css / en / opac-user.tmpl
1 <!-- TMPL_INCLUDE NAME="opac-top.inc" -->
2 <div id="mainbloc">
3 <!-- TMPL_LOOP NAME="BORROWER_INFO" -->
4         <div class="bloc20">
5                 <h2>Are our records correct?</h2>
6                 <p>Library Card: <!-- TMPL_VAR NAME="cardnumber" --> </p>
7                 <p><!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --> (<!-- TMPL_VAR NAME="title" -->) </p>
8                 <p><!-- TMPL_VAR NAME="streetaddress" -->, <!-- TMPL_VAR NAME="city" --></p>
9                 <p><!-- TMPL_VAR NAME="phone" --> (hm)</p>
10                 <p><!-- TMPL_VAR NAME="faxnumber" --> (wk)</p>
11                 <p><!-- TMPL_VAR NAME="emailaddress" --></p>
12                 <p><a href="/cgi-bin/koha/opac-userupdate.pl" class="button">Update Record</a></p>
13         </div>
14         <!-- TMPL_IF NAME="amountoverfive" -->
15         <div class="bloc20">
16                 <h2>You have outstanding charges and fines of <!-- TMPL_VAR NAME="amountoutstanding" --></b>
17                 <a href="/cgi-bin/koha/opac-account.pl" class="button">View Accounts</a>
18         </div>
19         <!-- /TMPL_IF -->
20
21         <!-- TMPL_IF NAME="amountoverzero" -->
22         <div class="bloc20">
23                 <h2>You have outstanding charges and fines of <!-- TMPL_VAR NAME="amountoutstanding" --></h2>
24                 <a href="/cgi-bin/koha/opac-account.pl" class="button">View Accounts</a>
25         </div>
26         <!-- /TMPL_IF -->
27
28         <!-- TMPL_IF NAME"amountlessthanzero" -->
29         <div class="bloc20">
30                 <p>You have a credit of <!-- TMPL_VAR NAME="amountoutstanding" --></p>
31                 <a href="/cgi-bin/koha/opac-account.pl" class="button">View Accounts</a>
32         </div>
33         <!-- /TMPL_IF -->
34
35 <!-- /TMPL_LOOP -->
36
37 <!-- TMPL_IF NAME="waiting_count" -->
38 <div class="bloc60">
39         <h2>You have reserved items waiting:</h2>
40         <ul>
41                 <!-- TMPL_LOOP NAME="WAITING" -->
42                         <li><!-- TMPL_VAR NAME="btitle" -->, pick up at: <b><!-- TMPL_VAR NAME="branch" --></b></li>
43                 <!-- /TMPL_LOOP -->
44         </ul>
45 </div>
46 <!-- /TMPL_IF -->
47
48 <div class="bloc60">
49         <!-- TMPL_IF NAME="issues_count" -->
50                 <h2>You have <b><!-- TMPL_VAR NAME="issues_count" --></b> items currently issued.</h2>
51                 <table>
52                         <tr>
53                                 <th>Title</th>
54                                 <th>Author</th>
55                                 <th>Due date</th>
56                                 <th>Itemtype</th>
57                                 <th>Barcode</th>
58                                 <th>Charges</th>
59                                 <th>Renewable</th>
60                         </tr>
61                         <!-- TMPL_LOOP NAME="ISSUES" -->
62                                 <tr>
63                                         <td><!-- TMPL_VAR NAME="title" --></td>
64                                         <td><!-- TMPL_VAR NAME="author" --></td>
65                                         <td><!-- TMPL_VAR NAME="date_due" --></td>
66                                         <td><!-- TMPL_VAR NAME="itemtype" --></td>
67                                         <td><!-- TMPL_VAR NAME="barcode" --></td>
68                                         <td><!-- TMPL_IF NAME="charges" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
69                                         <td><!-- TMPL_IF NAME="status" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
70                                 </tr>
71                         <!-- /TMPL_LOOP -->
72                 </table>
73         <!-- TMPL_ELSE -->
74                 <h2>You have no items on issue.</h2>
75         <!-- /TMPL_IF -->
76 </div>
77
78 <!-- TMPL_IF NAME="reserves_count" -->
79 <div class="bloc60">
80         <h2>You have <b><!-- TMPL_VAR NAME="reserves_count" --></b> items currently reserved.</h2>
81         <table cellspacing="0" align="center">
82                 <tr>
83                         <th>Title</th>
84                         <th>Author</th>
85                         <th>Reserve date</th>
86                 </tr>
87                 <!-- TMPL_LOOP NAME="RESERVES" -->
88                         <tr valign="top">
89                         <td><!-- TMPL_VAR NAME="btitle" --></td>
90                         <td><!-- TMPL_VAR NAME="author" --></td>
91                         <td><!-- TMPL_VAR NAME="reservedate" --></td>
92                         </tr>
93                 <!-- /TMPL_LOOP -->
94         </table>
95         <br />
96 </div>
97 <!-- /TMPL_IF -->
98 </div>
99 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->
100