|
Lines 4-10
Link Here
|
| 4 |
<tr> |
4 |
<tr> |
| 5 |
<th>Name</th> |
5 |
<th>Name</th> |
| 6 |
<th>Card number</th> |
6 |
<th>Card number</th> |
| 7 |
<th class="title-string">Date of birth</th> |
7 |
<th>Date of birth</th> |
| 8 |
<th>Category</th> |
8 |
<th>Category</th> |
| 9 |
<th>Library</th> |
9 |
<th>Library</th> |
| 10 |
<th>Address</th> |
10 |
<th>Address</th> |
|
Lines 26-32
Link Here
|
| 26 |
<td><a href="[% data_url | url %]">[% borrower.surname | html %], [% borrower.firstname | html %]</a></td> |
26 |
<td><a href="[% data_url | url %]">[% borrower.surname | html %], [% borrower.firstname | html %]</a></td> |
| 27 |
[% END %] |
27 |
[% END %] |
| 28 |
<td>[% borrower.cardnumber | html %]</td> |
28 |
<td>[% borrower.cardnumber | html %]</td> |
| 29 |
<td><span title="[% borrower.dateofbirth | html %]">[% INCLUDE 'patron-age.inc' patron = borrower %]</span></td> |
29 |
<td data-order="[% borrower.dateofbirth | html %]">[% INCLUDE 'patron-age.inc' patron = borrower %]</td> |
| 30 |
<td>[% Categories.GetName( borrower.categorycode ) | html %]</td> |
30 |
<td>[% Categories.GetName( borrower.categorycode ) | html %]</td> |
| 31 |
<td>[% Branches.GetName( borrower.branchcode ) | html %]</td> |
31 |
<td>[% Branches.GetName( borrower.branchcode ) | html %]</td> |
| 32 |
<td>[% borrower.address | html %]</td> |
32 |
<td>[% borrower.address | html %]</td> |
| 33 |
- |
|
|