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