@@ -, +, @@ - On a patron list with no patrons, confirm that the "Actions" menu lists "Add patrons," "Edit list," and "Delete list." - On a patron list containing one or more patrons, confirm that the "Actions" menu /also/ has these options: "Print patron cards," "Batch edit patrons," and "Batch delete patrons." - Confirm that the "actions" column is not sortable. - Test logging in as a user who has various combinations of permission to batch edit and batch delete. --- .../prog/en/modules/patron_lists/lists.tt | 47 ++++++++++------------ 1 file changed, 22 insertions(+), 25 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt @@ -11,7 +11,7 @@ $('#patron-lists-table').dataTable($.extend(true, {}, dataTablesDefaults, { "autoWidth": false, "aoColumnDefs": [ - { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false }, + { "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] } ], "sPaginationType": "four_button" } )); @@ -48,13 +48,7 @@ Name Patrons in list -   - [% IF CAN_user_tools_edit_patrons %] -   - [% END %] - [% IF CAN_user_tools_delete_anonymize_patrons %] -   - [% END %] +   @@ -70,26 +64,29 @@ - [% IF CAN_user_tools_edit_patrons %] - - - Edit patrons - - - [% END %] - [% IF CAN_user_tools_delete_anonymize_patrons %] - - - Delete patrons - - - [% END %] [% END %] --