From f556bf0cc925c51a92da04060d3dcfe363a235cf Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Thu, 31 Oct 2013 05:22:45 +0000 Subject: [PATCH] Bug 9044: (follow-up) restore the toolbar menu items This patch adds the following items back to the cataloging toolbar: - Edit items in batch - Delete items in a batch My rationale: the question of the best UI for selecting items for batch operations is not yet settled. Adding the ability to select items from the bib details page is indeed useful, but as currently implemented, it can hide the availability of the batch edit/deletion operations if no item is yet selected. Although having both the toolbar items and the links that display when an item is selected is a bit redundant, for now I think we can live with that until we get more eyes on the UI. Signed-off-by: Galen Charlton --- koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc index 2daacd325a..553d9ae744 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc @@ -145,6 +145,10 @@ CAN_user_serials_create_subscription ) %]
  • Edit items
  • [% END %] + [% IF ( CAN_user_tools_items_batchmod ) %]
  • Edit items in batch
  • [% END %] + + [% IF ( CAN_user_tools_items_batchdel ) %]
  • Delete items in a batch
  • [% END %] + [% IF ( CAN_user_editcatalogue_edit_items ) %]
  • Attach item
  • [% END %] [% IF ( EasyAnalyticalRecords ) %][% IF ( CAN_user_editcatalogue_edit_items ) %]
  • Link to host item[% END %][% END %] -- 2.20.1