Lines 23-28
Link Here
|
23 |
<li>[% IF ( email ) %][% email %][% ELSE %](no primary email on file)[% END %]</li> |
23 |
<li>[% IF ( email ) %][% email %][% ELSE %](no primary email on file)[% END %]</li> |
24 |
[% IF ( emailpro ) %]<li>[% emailpro %]</li>[% END %] |
24 |
[% IF ( emailpro ) %]<li>[% emailpro %]</li>[% END %] |
25 |
</ul> |
25 |
</ul> |
|
|
26 |
<ul> |
27 |
<li>Registration date: [% dateenrolled %]</li> |
28 |
<li>Expiration date: [% dateexpiry %]</li> |
29 |
<li>Library: [% branchname %]</li> |
30 |
<li>Category: [% description %]</li> |
31 |
</ul> |
26 |
|
32 |
|
27 |
[% IF ( issueloop ) %] |
33 |
[% IF ( issueloop ) %] |
28 |
<table> |
34 |
<table> |
Lines 86-89
Link Here
|
86 |
</table> |
92 |
</table> |
87 |
[% END %] |
93 |
[% END %] |
88 |
|
94 |
|
|
|
95 |
[% IF ( accounts ) %] |
96 |
<table> |
97 |
<caption>Account fines and payments</caption> |
98 |
<tr> |
99 |
<th>Description of charges</th> |
100 |
<th>Date</th> |
101 |
<th>Amount</th> |
102 |
<th>Outstanding</th> |
103 |
</tr> |
104 |
[% FOREACH account IN accounts %] |
105 |
<tr> |
106 |
<td> |
107 |
[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.biblionumber %]&itemnumber=[% account.itemnumber %]">[% END %] |
108 |
[% account.description %] [% IF ( account.printtitle ) %] [% account.title |html %][% END %] |
109 |
[% IF ( account.itemnumber ) %]</a>[% END %] |
110 |
</td> |
111 |
<td>[% account.date %]</td> |
112 |
<td>[% account.amount %]</td> |
113 |
<td>[% account.amountoutstanding %]</td> |
114 |
</tr> |
115 |
[% END %] |
116 |
<tfoot> |
117 |
<tr> |
118 |
<td colspan="3">Total due</td> |
119 |
<td colspan="2">[% totaldue %]</td> |
120 |
</tr> |
121 |
</tfoot> |
122 |
</table> |
123 |
[% END %] |
124 |
|
89 |
[% INCLUDE 'intranet-bottom.inc' %] |
125 |
[% INCLUDE 'intranet-bottom.inc' %] |