Lines 70-77
Link Here
|
70 |
<tbody> |
70 |
<tbody> |
71 |
[% FOREACH p IN patrons %] |
71 |
[% FOREACH p IN patrons %] |
72 |
<tr> |
72 |
<tr> |
73 |
<td><input class='keeper' type='radio' name='keeper' value='[% p.id | html %]' /></td> |
73 |
<td><input class="keeper" type="radio" name="keeper" value="[% p.id | html %]" id="keeper_[% p.id | html %]" /></td> |
74 |
<td>[% p.cardnumber | html %]</td> |
74 |
<td> |
|
|
75 |
<label for="keeper_[% p.id | html %]"> |
76 |
<strong>[% p.cardnumber | html %]</strong> |
77 |
</label> |
78 |
</td> |
75 |
<td>[% INCLUDE 'patron-title.inc' patron = p %]</td> |
79 |
<td>[% INCLUDE 'patron-title.inc' patron = p %]</td> |
76 |
<td>[% p.dateofbirth | $KohaDates %]</td> |
80 |
<td>[% p.dateofbirth | $KohaDates %]</td> |
77 |
<td>[% Categories.GetName( p.categorycode ) | html %] ([% p.categorycode | html %])</td> |
81 |
<td>[% Categories.GetName( p.categorycode ) | html %] ([% p.categorycode | html %])</td> |
78 |
- |
|
|