synch'ing 2.2 and head
[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" -->
8                 <p>Work address: <!-- TMPL_VAR NAME="streetaddress" -->, <!-- TMPL_VAR NAME="city" --></p>
9                 <p>Home address: <!-- TMPL_VAR name='physstreet' --></p>
10                 <p><!-- TMPL_IF name="phone" -->Home phone: <!-- TMPL_VAR NAME="phone" --><!-- /TMPL_IF --></p>
11                 <p><!-- TMPL_IF name="faxnumber" -->Fax: <!-- TMPL_VAR NAME="faxnumber" --><!-- /TMPL_IF --></p>
12                 <p><!-- TMPL_VAR NAME="emailaddress" --></p>
13                 <p><a href="/cgi-bin/koha/opac-userupdate.pl" class="button">Update Record</a></p>
14                 <!-- TMPL_IF name="textmessaging"-->
15                         <h2>Message from the library</h2>
16                         <!-- TMPL_VAR name="textmessaging" -->
17                 <!-- /TMPL_IF -->
18
19         </div>
20         <!-- TMPL_IF NAME="amountoverfive" -->
21         <div class="bloc20">
22                 <h2>You have outstanding charges and fines of <!-- TMPL_VAR NAME="amountoutstanding" --></b>
23                 <a href="/cgi-bin/koha/opac-account.pl" class="button">View Accounts</a>
24         </div>
25         <!-- /TMPL_IF -->
26
27         <!-- TMPL_IF NAME="amountoverzero" -->
28         <div class="bloc20">
29                 <h2>You have outstanding charges and fines of <!-- TMPL_VAR NAME="amountoutstanding" --></h2>
30                 <a href="/cgi-bin/koha/opac-account.pl" class="button">View Accounts</a>
31         </div>
32         <!-- /TMPL_IF -->
33
34         <!-- TMPL_IF NAME"amountlessthanzero" -->
35         <div class="bloc20">
36                 <p>You have a credit of <!-- TMPL_VAR NAME="amountoutstanding" --></p>
37                 <a href="/cgi-bin/koha/opac-account.pl" class="button">View Accounts</a>
38         </div>
39         <!-- /TMPL_IF -->
40
41 <!-- /TMPL_LOOP -->
42
43         <!-- TMPL_IF NAME="waiting_count" -->
44         <div class="bloc60">
45                 <h2>You have reserved items waiting:</h2>
46                 <ul>
47                         <!-- TMPL_LOOP NAME="WAITING" -->
48                                 <li><!-- TMPL_VAR NAME="btitle" -->, pick up at: <b><!-- TMPL_VAR NAME="branch" --></b></li>
49                         <!-- /TMPL_LOOP -->
50                 </ul>
51         </div>
52         <!-- /TMPL_IF -->
53
54         <div class="bloc60">
55                 <!-- TMPL_IF NAME="issues_count" -->
56                         <h2>You have <b><!-- TMPL_VAR NAME="issues_count" --></b> items currently issued.</h2>
57                         <table>
58                                 <tr>
59                                         <th>Title</th>
60                                         <th>Author</th>
61                                         <th>Due date</th>
62                                         <th>Itemtype</th>
63                                         <th>Barcode</th>
64                                         <th>Charges</th>
65                                         <th>Renewable</th>
66                                 </tr>
67                                 <!-- TMPL_LOOP NAME="ISSUES" -->
68                                         <!-- TMPL_IF name="overdue"-->
69                                                 <tr>
70                                                         <td><!-- TMPL_VAR NAME="title" --></td>
71                                                         <td><!-- TMPL_VAR NAME="author" --></td>
72                                                         <td><b>OVERDUE <!-- TMPL_VAR NAME="date_due" --></b></td>
73                                                         <td><!-- TMPL_VAR NAME="itemtype" --></td>
74                                                         <td><!-- TMPL_VAR NAME="barcode" --></td>
75                                                         <td><!-- TMPL_IF NAME="charges" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
76                                                         <td><!-- TMPL_IF NAME="status" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
77                                                 </tr>
78                                         <!-- TMPL_ELSE -->
79                                                 <tr>
80                                                         <td><!-- TMPL_VAR NAME="title" --></td>
81                                                         <td><!-- TMPL_VAR NAME="author" --></td>
82                                                         <td><!-- TMPL_VAR NAME="date_due" --></td>
83                                                         <td><!-- TMPL_VAR NAME="itemtype" --></td>
84                                                         <td><!-- TMPL_VAR NAME="barcode" --></td>
85                                                         <td><!-- TMPL_IF NAME="charges" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
86                                                         <td><!-- TMPL_IF NAME="status" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
87                                                 </tr>
88                                         <!-- /TMPL_IF -->
89                                 <!-- /TMPL_LOOP -->
90                         </table>
91                 <!-- TMPL_ELSE -->
92                         <h2>You have no items on issue.</h2>
93                 <!-- /TMPL_IF -->
94         </div>
95
96         <!-- TMPL_IF NAME="reserves_count" -->
97         <div class="bloc60">
98                 <h2>You have <b><!-- TMPL_VAR NAME="reserves_count" --></b> items currently reserved.</h2>
99                 <table cellspacing="0" align="center">
100                         <tr>
101                                 <th>Title</th>
102                                 <th>Author</th>
103                                 <th>Reserve date</th>
104                         </tr>
105                         <!-- TMPL_LOOP NAME="RESERVES" -->
106                                 <tr valign="top">
107                                 <td><!-- TMPL_VAR NAME="btitle" --></td>
108                                 <td><!-- TMPL_VAR NAME="author" --></td>
109                                 <td><!-- TMPL_VAR NAME="reservedate" --></td>
110                                 </tr>
111                         <!-- /TMPL_LOOP -->
112                 </table>
113                 <br />
114         </div>
115         <!-- /TMPL_IF -->
116 </div>
117 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->
118