Lines 103-108
Link Here
|
103 |
<th>Expires on</th> |
103 |
<th>Expires on</th> |
104 |
<th>OD/Checkouts</th> |
104 |
<th>OD/Checkouts</th> |
105 |
<th>Fines</th> |
105 |
<th>Fines</th> |
|
|
106 |
[% IF Koha.Preference('ExtendedPatronAttributes') %] |
107 |
<th>Extended attributes</th> |
108 |
[% END %] |
106 |
<th>Circ note</th> |
109 |
<th>Circ note</th> |
107 |
<th> </th> |
110 |
<th> </th> |
108 |
</tr> |
111 |
</tr> |
Lines 369-374
Link Here
|
369 |
[%# Remove the first column if we do not display the checkbox %] |
372 |
[%# Remove the first column if we do not display the checkbox %] |
370 |
columns_settings.splice(0, 1); |
373 |
columns_settings.splice(0, 1); |
371 |
[% END %] |
374 |
[% END %] |
|
|
375 |
[% UNLESS Koha.Preference('ExtendedPatronAttributes') %] |
376 |
const extendedAttributesColumnIndex = columns_settings.findIndex(column => column.columnname === 'extended_attributes'); |
377 |
columns_settings.splice(extendedAttributesColumnIndex, 1); |
378 |
[% END %] |
372 |
dtMemberResults = KohaTable("memberresultst", { |
379 |
dtMemberResults = KohaTable("memberresultst", { |
373 |
'bServerSide': true, |
380 |
'bServerSide': true, |
374 |
'sAjaxSource': "/cgi-bin/koha/svc/members/search", |
381 |
'sAjaxSource': "/cgi-bin/koha/svc/members/search", |
Lines 438-443
Link Here
|
438 |
{ 'mDataProp': 'dt_dateexpiry' }, |
445 |
{ 'mDataProp': 'dt_dateexpiry' }, |
439 |
{ 'mDataProp': 'dt_od_checkouts', 'bSortable': false }, |
446 |
{ 'mDataProp': 'dt_od_checkouts', 'bSortable': false }, |
440 |
{ 'mDataProp': 'dt_fines', 'bSortable': false }, |
447 |
{ 'mDataProp': 'dt_fines', 'bSortable': false }, |
|
|
448 |
[% IF Koha.Preference('ExtendedPatronAttributes') %] |
449 |
{ 'mDataProp': 'dt_extended_attributes', 'bSortable': false }, |
450 |
[% END %] |
441 |
{ 'mDataProp': 'dt_borrowernotes' }, |
451 |
{ 'mDataProp': 'dt_borrowernotes' }, |
442 |
{ 'mDataProp': 'dt_action', 'bSortable': false, 'sClass': 'actions' } |
452 |
{ 'mDataProp': 'dt_action', 'bSortable': false, 'sClass': 'actions' } |
443 |
], |
453 |
], |