Owen Leonard
857e3443a6
With the addition of the Plugins feature a link was added to the global navigation in the "More" submenu. I think this is unnecessary. The global navigation should be limited to primary Koha functons. This patch removes the link. To test, apply the patch and confirm that there is no longer a link to Plugins in the header navigation under "More." Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Template patch, works as advertised. Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
96 lines
4.8 KiB
HTML
96 lines
4.8 KiB
HTML
<div id="header" class="navbar navbar-static-top">
|
|
<div class="navbar-inner">
|
|
<ul id="toplevelmenu" class="nav">
|
|
[% IF ( CAN_user_circulate ) %]<li><a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a></li>[% END %]
|
|
[% IF ( CAN_user_borrowers ) %]<li><a href="/cgi-bin/koha/members/members-home.pl">Patrons</a></li>[% END %]
|
|
[% IF ( CAN_user_catalogue ) %]<li><a href="/cgi-bin/koha/catalogue/search.pl">Search</a></li>[% END %]
|
|
[% IF ( intranetbookbag ) %]
|
|
<li><a href="#" id="cartmenulink">Cart<span id="basketcount"></span></a></li>
|
|
[% END %]
|
|
[% IntranetNav %]
|
|
<li class="dropdown">
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">More <b class="caret"></b></a>
|
|
<ul class="dropdown-menu">
|
|
<li><a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a></li>
|
|
[% IF ( CAN_user_editcatalogue_edit_catalogue || CAN_user_editcatalogue_edit_items ) %]
|
|
<li><a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_acquisition ) %]
|
|
<li><a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_editauthorities ) %]
|
|
<li><a href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_serials ) %]
|
|
<li><a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_reports ) %]
|
|
<li><a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_tools ) %]
|
|
<li><a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_parameters ) %]
|
|
<li><a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a></li>
|
|
[% END %]
|
|
<li><a href="/cgi-bin/koha/about.pl">About Koha</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
<ul class="nav pull-right">
|
|
<li class="dropdown">
|
|
<a href="#" id="drop3" role="button" class="dropdown-toggle" data-toggle="dropdown">
|
|
[% IF ( loggedinusername ) %]
|
|
<span class="loggedinusername">
|
|
[% loggedinusername %]
|
|
</span>
|
|
<span class="separator">|</span>
|
|
[% IF ( AutoLocation ) %]
|
|
<brand>
|
|
[% LoginBranchname %]
|
|
</brand>
|
|
[% ELSE %]
|
|
<strong>
|
|
[% IF ( LoginBranchname == 'NO_LIBRARY_SET' ) %]
|
|
NO LIBRARY SET
|
|
[% ELSE %]
|
|
[% LoginBranchname %]
|
|
[% END %]
|
|
</strong>
|
|
[% END %]
|
|
<b class="caret"></b>
|
|
</a>
|
|
<ul class="dropdown-menu" role="menu" aria-labelledby="drop3">
|
|
[% IF ( IndependantBranches ) %]
|
|
[% IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) %]
|
|
<li>
|
|
<a class="toplinks" href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a>
|
|
</li>
|
|
[% END %]
|
|
[% ELSE %]
|
|
<li>
|
|
<a class="toplinks" href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a>
|
|
</li>
|
|
[% END %]
|
|
[% IF ( intranetbookbag ) %]
|
|
<li>
|
|
<a class="toplinks" href="/cgi-bin/koha/mainpage.pl?logout.x=1" onclick="clearHoldFor(); delBasket('main', true);">Log out</a>
|
|
</li>
|
|
[% ELSE %]
|
|
<li>
|
|
<a class="toplinks" href="/cgi-bin/koha/mainpage.pl?logout.x=1" onclick="clearHoldFor();">Log out</a>
|
|
</li>
|
|
[% END %]
|
|
[% ELSE %]
|
|
You are not logged in |
|
|
[% END %]
|
|
</ul>
|
|
<li>
|
|
<a class="toplinks" href="/cgi-bin/koha/help.pl" id="helper" onclick="var link=window.open('','Koha_Help','width=600,height=600,toolbar=false,scrollbars=yes'); link.location='/cgi-bin/koha/help.pl'; return false;">Help</a>
|
|
</li>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
[% IF ( intranetbookbag ) %]<div id="cartDetails">Your cart is empty.</div>[% END %]
|
|
</div>
|