In English, there is usually no space before question mark or colon
[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>Something new: <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                 You have <b><!-- TMPL_VAR NAME="issues_count" --></b> items currently issued.<br />
51                 <table cellspacing="0">
52                         <tr>
53                                 <th>Title</th>
54                                 <th>Author</th>
55                                 <th>Due date</th>
56                                 <th>Itemtype</th>
57                                 <th>Charges</th>
58                                 <th>Current Loan</th>
59                         </tr>
60                         <!-- TMPL_LOOP NAME="ISSUES" -->
61                                 <tr>
62                                         <td><!-- TMPL_VAR NAME="title" --></td>
63                                         <td><!-- TMPL_VAR NAME="author" --></td>
64                                         <td><!-- TMPL_VAR NAME="date_due" --></td>
65                                         <td><!-- TMPL_VAR NAME="itemtype" --></td>
66                                         <td><!-- TMPL_IF NAME="charges" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
67                                         <td><!-- TMPL_IF NAME="status" -->Yes<!-- TMPL_ELSE -->No<!-- /TMPL_IF --></td>
68                                 </tr>
69                         <!-- /TMPL_LOOP -->
70                 </table>
71         <!-- TMPL_ELSE -->
72                 <h2>You have no items on issue.</h2>
73         <!-- /TMPL_IF -->
74 </div>
75
76 <!-- TMPL_IF NAME="reserves_count" -->
77 <div class="bloc60">
78         <h2>You have <b><!-- TMPL_VAR NAME="reserves_count" --></b> items currently reserved.</h2>
79         <table cellspacing="0" align="center">
80                 <tr>
81                         <th>Title</th>
82                         <th>Author</th>
83                         <th>Reserve date</th>
84                 </tr>
85                 <!-- TMPL_LOOP NAME="RESERVES" -->
86                         <tr valign="top">
87                         <td><!-- TMPL_VAR NAME="btitle" --></td>
88                         <td><!-- TMPL_VAR NAME="author" --></td>
89                         <td><!-- TMPL_VAR NAME="reservedate" --></td>
90                         </tr>
91                 <!-- /TMPL_LOOP -->
92         </table>
93         <br />
94 </div>
95 <!-- /TMPL_IF -->
96 </div>
97 <!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->
98