Bug 16324: Move item search into header
[koha-equinox.git] / koha-tmpl / intranet-tmpl / prog / en / includes / header.inc
1 [% USE Branches %]
2 <div id="header" class="navbar navbar-static-top">
3     <div class="navbar-inner">
4         <ul id="toplevelmenu" class="nav">
5             [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]<li><a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a></li>[% END %]
6             [% IF ( CAN_user_borrowers ) %]<li><a href="/cgi-bin/koha/members/members-home.pl">Patrons</a></li>[% END %]
7             <li class="dropdown">
8                 <a href="#" class="dropdown-toggle" data-toggle="dropdown">Search <b class="caret"></b></a>
9                 <ul class="dropdown-menu">
10                     [% IF ( CAN_user_catalogue ) %]<li><a href="/cgi-bin/koha/catalogue/search.pl">Advanced search</a></li>
11                     <li><a href="/cgi-bin/koha/catalogue/itemsearch.pl">Item search</a></li>[% END %]
12                 </ul>
13             </li>
14             [% IF ( intranetbookbag ) %]
15             <li><a href="#" id="cartmenulink">Cart<span id="basketcount"></span></a></li>
16             [% END %]
17             [% IntranetNav %]
18             <li class="dropdown">
19                 <a href="#" class="dropdown-toggle" data-toggle="dropdown">More <b class="caret"></b></a>
20                 <ul class="dropdown-menu">
21                     <li><a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a></li>
22                     [% IF ( CAN_user_editcatalogue_edit_catalogue || CAN_user_editcatalogue_edit_items ) %]
23                     <li><a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a></li>
24                     [% END %]
25                     [% IF ( CAN_user_acquisition ) %]
26                     <li><a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a></li>
27                     [% END %]
28                     <li><a href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a></li>
29                     [% IF ( CAN_user_serials ) %]
30                     <li><a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a></li>
31                     [% END %]
32                     [% IF ( UseCourseReserves ) %]
33                     <li><a href="/cgi-bin/koha/course_reserves/course-reserves.pl">Course reserves</a></li>
34                     [% END %]
35                     [% IF ( CAN_user_reports ) %]
36                     <li><a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a></li>
37                     [% END %]
38                     [% IF ( CAN_user_tools ) %]
39                     <li><a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a></li>
40                     [% END %]
41                     [% IF ( CAN_user_parameters ) %]
42                     <li><a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a></li>
43                     [% END %]
44                     <li><a href="/cgi-bin/koha/about.pl">About Koha</a></li>
45                 </ul>
46             </li>
47         </ul>
48         <ul class="nav pull-right">
49             [% IF ( loggedinusername ) %]
50             <li class="dropdown">
51                 <a href="#" id="drop3" role="button" class="dropdown-toggle" data-toggle="dropdown">
52                     <span class="loggedinusername">[% loggedinusername %]</span>
53                     <span class="separator">|</span>
54                     [% IF ( AutoLocation ) %]
55                     <brand>
56                         [% LoginBranchname %]
57                     </brand>
58                     [% ELSE %]
59                     <strong>
60                     [% IF ( LoginBranchname == 'NO_LIBRARY_SET' ) %]
61                         NO LIBRARY SET
62                     [% ELSE %]
63                         <span id="logged-in-branch-name">[% LoginBranchname %]</span>
64                         <span id="logged-in-branch-code" class="content_hidden">[% Branches.GetLoggedInBranchcode %]</span>
65                     [% END %]
66                     </strong>
67                     [% END %]
68                     <b class="caret"></b>
69                 </a>
70                 <ul class="dropdown-menu" role="menu" aria-labelledby="drop3">
71                     [% IF ( IndependentBranches ) %]
72                         [% IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) %]
73                     <li>
74                         <a class="toplinks" href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a>
75                     </li>
76                         [% END %]
77                     [% ELSE %]
78                     <li>
79                         <a class="toplinks" href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a>
80                     </li>
81                     [% END %]
82                     [% IF EnableSearchHistory %]
83                     <li>
84                         <a class="toplinks" href="/cgi-bin/koha/catalogue/search-history.pl">Search history</a>
85                     </li>
86                     [% END %]
87                     [% IF loggedinusernumber %]
88                         <li class ="toplinks-myaccount">
89                             <a class="toplinks" href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% loggedinusernumber %]">My account</a>
90                         </li>
91                         <li class="toplinks-mycheckouts">
92                             <a class="toplinks" href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% loggedinusernumber %]">My checkouts</a>
93                         </li>
94                     [% END %]
95                     <li>
96                         <a id="logout" class="toplinks" href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log out</a>
97                     </li>
98                 </ul>
99             </li>
100             <li>
101                 <a class="toplinks" href="/cgi-bin/koha/help.pl" id="helper">Help</a>
102             </li>
103             [% ELSE %]
104             <li class="loggedout">
105                 <span>
106                     <a href="/cgi-bin/koha/mainpage.pl" id="login">Log in</a>
107                     <span class="separator">|</span>
108                     <a class="toplinks" href="/cgi-bin/koha/help.pl" id="helper">Help</a>
109                 </span>
110             </li>
111             [% END %]
112         </ul>
113     </div>
114     [% IF ( intranetbookbag ) %]<div id="cartDetails">Your cart is empty.</div>[% END %]
115 </div>