Lines 2-7
Link Here
|
2 |
<title>Koha › Patrons [% IF ( searching ) %]› Search results[% END %]</title> |
2 |
<title>Koha › Patrons [% IF ( searching ) %]› Search results[% END %]</title> |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
4 |
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script> |
4 |
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script> |
|
|
5 |
[% INCLUDE 'datatables-strings.inc' %] |
5 |
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> |
6 |
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> |
6 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
7 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
7 |
<script type="text/javascript"> |
8 |
<script type="text/javascript"> |
Lines 92-98
Link Here
|
92 |
{ 'mDataProp': 'dt_dateexpiry' }, |
93 |
{ 'mDataProp': 'dt_dateexpiry' }, |
93 |
{ 'mDataProp': 'dt_od_checkouts', 'bSortable': false }, |
94 |
{ 'mDataProp': 'dt_od_checkouts', 'bSortable': false }, |
94 |
{ 'mDataProp': 'dt_fines', 'bSortable': false }, |
95 |
{ 'mDataProp': 'dt_fines', 'bSortable': false }, |
95 |
{ 'mDataProp': 'dt_borrowernotes', 'bSortable': false }, |
96 |
{ 'mDataProp': 'dt_borrowernotes' }, |
96 |
{ 'mDataProp': 'dt_action', 'bSortable': false } |
97 |
{ 'mDataProp': 'dt_action', 'bSortable': false } |
97 |
], |
98 |
], |
98 |
'fnRowCallback': function(nRow, aData, iDisplayIndex, iDisplayIndexFull) { |
99 |
'fnRowCallback': function(nRow, aData, iDisplayIndex, iDisplayIndexFull) { |
Lines 212-218
Link Here
|
212 |
<tr> |
213 |
<tr> |
213 |
<th>Card</th> |
214 |
<th>Card</th> |
214 |
<th>Name</th> |
215 |
<th>Name</th> |
215 |
<th>Cat</th> |
216 |
<th>Category</th> |
216 |
<th>Library</th> |
217 |
<th>Library</th> |
217 |
<th>Expires on</th> |
218 |
<th>Expires on</th> |
218 |
<th>OD/Checkouts</th> |
219 |
<th>OD/Checkouts</th> |
Lines 261-269
Link Here
|
261 |
<option value='phone'>Phone number</option> |
262 |
<option value='phone'>Phone number</option> |
262 |
[% END %] |
263 |
[% END %] |
263 |
[% IF searchfieldstype == "address" %] |
264 |
[% IF searchfieldstype == "address" %] |
264 |
<option selected="selected" value='address'>Street Address</option> |
265 |
<option selected="selected" value='address'>Street address</option> |
265 |
[% ELSE %] |
266 |
[% ELSE %] |
266 |
<option value='address'>Street Address</option> |
267 |
<option value='address'>Street address</option> |
267 |
[% END %] |
268 |
[% END %] |
268 |
[% IF searchfieldstype == "dateofbirth" %] |
269 |
[% IF searchfieldstype == "dateofbirth" %] |
269 |
<option selected="selected" value='dateofbirth'>Date of birth</option> |
270 |
<option selected="selected" value='dateofbirth'>Date of birth</option> |
270 |
- |
|
|