@@ -, +, @@ creator --- koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc | 6 +++++- koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt | 5 ++++- .../intranet-tmpl/prog/en/modules/labels/label-edit-layout.tt | 3 +++ .../intranet-tmpl/prog/en/modules/labels/label-edit-profile.tt | 7 +++++-- .../intranet-tmpl/prog/en/modules/labels/label-edit-template.tt | 3 +++ koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-home.tt | 3 +++ koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tt | 3 +++ 7 files changed, 26 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc @@ -6,7 +6,11 @@ if ( url.match(/\?(.+)$/) ) { params = "?" + RegExp.$1; } - $('#navmenulist a[href$="/' + path + params + '"]').css('font-weight','bold'); + if (path.indexOf("labels") >= 0 && path.indexOf("spine") < 0 ) { + $('#navmenulist a[href$="/cgi-bin/koha/labels/label-home.pl"]').css('font-weight','bold'); + } else { + $('#navmenulist a[href$="/' + path + params + '"]').css('font-weight','bold'); + } }); //]]> --- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt @@ -158,7 +158,7 @@ [% INCLUDE 'header.inc' %] [% INCLUDE 'cat-search.inc' %] +
+ [% INCLUDE 'tools-menu.inc' %] +
[% INCLUDE 'intranet-bottom.inc' %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-layout.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-layout.tt @@ -206,5 +206,8 @@ +
+ [% INCLUDE 'tools-menu.inc' %] +
[% INCLUDE 'intranet-bottom.inc' %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-profile.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-profile.tt @@ -109,7 +109,7 @@ - +
Offset:
  1. @@ -120,7 +120,7 @@
- +
Creep:
  1. @@ -142,5 +142,8 @@ +
    + [% INCLUDE 'tools-menu.inc' %] +
    [% INCLUDE 'intranet-bottom.inc' %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-template.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-template.tt @@ -178,5 +178,8 @@ +
    + [% INCLUDE 'tools-menu.inc' %] +
    [% INCLUDE 'intranet-bottom.inc' %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-home.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-home.tt @@ -26,5 +26,8 @@ +
    + [% INCLUDE 'tools-menu.inc' %] +
    [% INCLUDE 'intranet-bottom.inc' %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tt @@ -170,5 +170,8 @@ +
    + [% INCLUDE 'tools-menu.inc' %] +
    [% INCLUDE 'intranet-bottom.inc' %] --