@@ -, +, @@ widths - Narrow your browser so that the viewport is less than 800px wide. - The logged-in-user menu should change from text to a single "user" icon. - Clicking the icon should display a menu which includes labeled information about the current desk. --- koha-tmpl/intranet-tmpl/prog/en/includes/header.inc | 9 +++++++++ 1 file changed, 9 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc @@ -117,6 +117,15 @@ [% Branches.GetLoggedInBranchcode | html %] [% END %] +
  • + Desk:
    + [% IF ( LoginDeskname == '' AND Desks.defined ) %] + NO DESK SET + [% ELSIF ( LoginDeskname != '' ) %] + [% LoginDeskname | html %] + [% Desks.GetLoggedInDeskId | html %] + [% END %] +
  • [% IF ( IndependentBranches ) %] --