https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31198 --- Comment #5 from Juliet Heltibridle <jheltibridle@rcplib.org> --- I would love to see additional enhancements to the search results for authority records. This would include showing the authority number in a column, allowing the number of results to be increased from a drop-down (maybe not show all, but show more than 20 at a time), and allowing exports of the results. This would bring it into alignment with other results tables in the staff interface, and make it more useful for those working with the results. In the meantime, I've added the following jquery to my system to show the Auth ID: $(document).ready(function() { if($('#authorities_searchresultlist_results').length) { $('#authorities_searchresultlist_results tr:first').prepend('<th>Auth ID</th>'); $('#authorities_searchresultlist_results tr[data-authid]').each(function() { var authid = $(this).attr('data-authid'); $(this).find('td:first').before('<td>' + authid + '</td>'); }); } }); -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.