]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/staff/navbar.tt2
LP1806087 Org setting to enable experimental staff catalog
[Evergreen.git] / Open-ILS / src / templates / staff / navbar.tt2
1 <!-- 
2   main navigation bar
3     
4   note the use of target="_self" for navigation links.
5   this tells angular to treat the href as a new page 
6   and not an intra-app route.  This is necessary when
7   moving between applications.
8
9   For icons, see http://getbootstrap.com/components/#glyphicons
10 -->
11
12 <div id="top-navbar" role="navigation"
13   class="navbar navbar-default navbar-fixed-top" role="navigation">
14
15   <!-- navbar-header here needed for supporting angular-ui-bootstrap -->
16   <div class="navbar-header">
17     <button type="button" class="navbar-toggle" 
18         ng-init="navCollapsed = true" ng-click="navCollapsed = !navCollapsed">
19       <span class="sr-only">[% l('Toggle navigation') %]</span>
20       <span class="icon-bar"></span>
21       <span class="icon-bar"></span>
22       <span class="icon-bar"></span>
23     </button>
24   </div>
25
26   <div class="navbar-collapse collapse" ng-class="!navCollapsed && 'in'">
27     <ul class="nav navbar-nav">
28       <li><a href='./' title="[% l('Home') %]" target="_self"
29         class="glyphicon glyphicon-home"></a><li>
30
31       <!-- search -->
32       <li class="dropdown" uib-dropdown>
33         <a href uib-dropdown-toggle>[% l('Search') %]
34           <b class="caret"></b>
35         </a>
36         <ul uib-dropdown-menu>
37           <li>
38             <a href="./circ/patron/search" target="_self"
39               eg-accesskey="[% l('alt+s') %] [% l('f4') %]" 
40               eg-accesskey-desc="[% l('Patron search by name, address, etc.') %]">
41               <span class="glyphicon glyphicon-user"></span>
42               <span eg-accesskey-label>[% l('Search for Patrons') %]</span>
43             </a>
44           </li>
45           <li>
46             <a href="./cat/item/search" target="_self"
47               eg-accesskey="[% l('f5') %]" 
48               eg-accesskey-desc="[% l('Item Status') %]">
49               <span class="glyphicon glyphicon-barcode"></span>
50               <span>[% l('Search for Items by Barcode') %]</span>
51             </a>
52           </li>
53           <li>
54             <a href="./cat/catalog/index" target="_self"
55               eg-accesskey="[% l('f3') %]" 
56               eg-accesskey-desc="[% l('OPAC') %]">
57               <span class="glyphicon glyphicon-search"></span>
58               <span>[% l('Search the Catalog') %]</span>
59             </a>
60           </li>
61         </ul>
62       </li>
63
64
65       <!-- circulation -->
66       <li class="dropdown" uib-dropdown>
67         <a href uib-dropdown-toggle>[% l('Circulation') %]<b class="caret"></b>
68         </a>
69
70         <ul uib-dropdown-menu>
71           <li ng-if="username">
72             <a href="./circ/patron/bcsearch" target="_self"
73               eg-accesskey="[% l('f1') %]" 
74               eg-accesskey-desc="[% l('Check Out') %]">
75               <span class="glyphicon glyphicon-export"></span>
76               [% l('Check Out') %]
77             </a>
78           </li>
79           <li ng-if="!username">
80             <a href="" ng-click="rs.active_tab('checkout')" target="_self"
81               eg-accesskey="[% l('f1') %]" 
82               eg-accesskey-desc="[% l('Check Out') %]">
83               <span class="glyphicon glyphicon-export"></span>
84               [% l('Check Out') %]
85             </a>
86           </li>
87           <li ng-if="username">
88             <a href="./circ/checkin/checkin" target="_self"
89               eg-accesskey="[% l('f2') %]" 
90               eg-accesskey-desc="[% l('Check In') %]">
91               <span class="glyphicon glyphicon-import"></span>
92               [% l('Check In') %]
93             </a>
94           </li>
95           <li ng-if="!username">
96             <a href="" ng-click="rs.active_tab('checkin')" target="_self"
97               eg-accesskey="[% l('f2') %]" 
98               eg-accesskey-desc="[% l('Check In') %]">
99               <span class="glyphicon glyphicon-import"></span>
100               [% l('Check In') %]
101             </a>
102           </li>
103           <li>
104             <a href="./circ/checkin/capture" target="_self"
105               eg-accesskey="[% l('shift+f2') %]" 
106               eg-accesskey-desc="[% l('Capture Holds') %]">
107               <span class="glyphicon glyphicon-pushpin"></span>
108               [% l('Capture Holds') %]
109             </a>
110           </li>
111           <li>
112             <a href="./circ/holds/pull" target="_self">
113               <span class="glyphicon glyphicon-th-list"></span>
114               [% l('Pull List for Hold Requests') %]
115             </a>
116           </li>
117           <li ng-if="username">
118             <a href="./circ/renew/renew" target="_self"
119               eg-accesskey="[% l('ctrl+f2') %]" 
120               eg-accesskey-desc="[% l('Renew items') %]">
121               <span class="glyphicon glyphicon-refresh"></span>
122               [% l('Renew Items') %]
123             </a>
124           </li>
125           <li ng-if="!username">
126             <a href="" ng-click="rs.active_tab('renew')" target="_self"
127               eg-accesskey="[% l('ctrl+f2') %]" 
128               eg-accesskey-desc="[% l('Renew items') %]">
129               <span class="glyphicon glyphicon-refresh"></span>
130               [% l('Renew Items') %]
131             </a>
132           </li>
133           <li ng-if="username">
134             <a href="./circ/patron/register" target="_self"
135               eg-accesskey="[% l('shift+f1') %]" 
136               eg-accesskey-desc="[% l('Register Patron') %]">
137               <span class="glyphicon glyphicon-user"></span>
138               [% l('Register Patron') %]
139             </a>
140           </li>
141           <li ng-if="!username">
142             <a href="" ng-click="rs.active_tab('register')" target="_self"
143               eg-accesskey="[% l('shift+f1') %]" 
144               eg-accesskey-desc="[% l('Register Patron') %]">
145               <span class="glyphicon glyphicon-user"></span>
146               [% l('Register Patron') %]
147             </a>
148           </li>
149           <li ng-if="showRecentPatron">
150             <a href="./circ/patron/last" target="_self"
151               eg-accesskey="[% l('f8') %]" 
152               eg-accesskey-desc="[% l('Retrieve Last Patron') %]">
153               <span class="glyphicon glyphicon-share-alt"></span>
154               [% l('Retrieve Last Patron') %]
155             </a>
156           </li>
157           <li ng-if="showRecentPatrons">
158             <a href="./circ/patron/search?show_recent=1" target="_self"
159               eg-accesskey-desc="[% l('Retrieve Recent Patrons') %]">
160               <span class="glyphicon glyphicon-share-alt"></span>
161               [% l('Retrieve Recent Patrons') %]
162             </a>
163           </li>
164           <li>
165             <a href="./circ/patron/pending/list" target="_self">
166               <span class="glyphicon glyphicon-thumbs-up"></span>
167               [% l('Pending Patrons') %]
168             </a>
169           </li>
170           <li>
171             <a href="./circ/patron/bucket/view" target="_self">
172               <span class="glyphicon glyphicon-list-alt"></span>
173               [% l('User Buckets') %]
174             </a>
175           </li>
176           <li class="divider"></li>
177           <li>
178             <a href="./circ/patron/credentials" target="_self">
179               <span class="glyphicon glyphicon-ok"></span>
180               <span>[% l('Verify Credentials') %]</span>
181             </a>
182           </li>
183           <li ng-if="username">
184             <a href="./circ/in_house_use/index" target="_self"
185               eg-accesskey="[% l('f6') %]" 
186               eg-accesskey-desc="[% l('Record In-House Use') %]">
187               <span class="glyphicon glyphicon-pencil"></span>
188               <span>[% l('Record In-House Use') %]</span>
189             </a>
190           </li>
191           <li ng-if="!username">
192             <a href="" ng-click="rs.active_tab('in_house_use')" target="_self"
193               eg-accesskey="[% l('f6') %]" 
194               eg-accesskey-desc="[% l('Record In-House Use') %]">
195               <span class="glyphicon glyphicon-pencil"></span>
196               <span>[% l('Record In-House Use') %]</span>
197             </a>
198           </li>
199           <li>
200             <a href="./circ/holds/shelf" target="_self">
201               <span class="glyphicon glyphicon-tasks"></span>
202               <span>[% l('Holds Shelf') %]</span>
203             </a>
204           </li>
205           <li class="divider"></li>
206           <li>
207             <a href="./cat/item/replace_barcode/index" target="_self">
208               <span class="glyphicon glyphicon-barcode"></span>
209               <span>[% l('Replace Barcode') %]</span>
210             </a>
211           </li>
212           <li>
213             <a href="./cat/item/search" target="_self">
214               <span class="glyphicon glyphicon-saved"></span>
215               <span>[% l('Item Status') %]</span>
216             </a>
217           </li>
218           <li>
219             <a href="./cat/item/missing_pieces" target="_self">
220               <span class="glyphicon glyphicon-th"></span>
221               <span>[% l('Scan Item as Missing Pieces') %]</span>
222             </a>
223           </li>
224           <li class="divider"></li>
225           <li>
226             <a href="" ng-click="reprintLast($event)"
227               eg-accesskey="[% l('f9') %]" 
228               eg-accesskey-desc="[% l('Reprint Last Receipt') %]">
229               <span class="glyphicon glyphicon-print"></span>
230               <span>[% l('Reprint Last Receipt') %]</span>
231             </a>
232           </li>
233           <li class="divider"></li>
234           <li ng-class="{disabled : offlineDisabled()}">
235             <a href="./offline-interface" target="_self" ng-class="{disabled : offlineDisabled()}">
236               <span class="glyphicon glyphicon-alert"></span>
237               <span>[% l('Offline Circulation') %]</span>
238             </a>
239           </li>
240         </ul>
241       </li><!-- circ -->
242
243       <!-- cataloging -->
244       <li class="dropdown" uib-dropdown>
245         <a href uib-dropdown-toggle>[% l('Cataloging') %]<b class="caret"></b>
246         </a>
247         <ul uib-dropdown-menu>
248           <li>
249             <a href="./cat/catalog/index" target="_self">
250               <span class="glyphicon glyphicon-search"></span>
251               [% l('Search the Catalog') %]
252             </a>
253           </li>
254           <!--
255             Link to experimental Angular staff catalog.
256           -->
257           <li ng-if="showAngularCatalog">
258             <a href="/eg2/staff/catalog/search">
259               <span class="glyphicon glyphicon-search"></span>
260               <span>[% l('Staff Catalog (Experimental)') %]</span>
261             </a>
262           </li>
263           <li>
264             <a href="./cat/bucket/record/view" target="_self">
265               <span class="glyphicon glyphicon-list-alt"></span>
266               [% l('Record Buckets') %]
267             </a>
268           </li>
269           <li>
270             <a href="./cat/bucket/copy/view" target="_self">
271               <span class="glyphicon glyphicon-list-alt"></span>
272               [% l('Item Buckets') %]
273             </a>
274           </li>
275           <li class="divider"></li>
276           <li>
277             <a href="./cat/catalog/retrieve_by_id" target="_self">
278               <span class="glyphicon glyphicon-file"></span>
279               [% l('Retrieve Bib Record by ID') %]
280             </a>
281           </li>
282           <li>
283             <a href="./cat/catalog/retrieve_by_tcn" target="_self"
284               eg-accesskey="[% l('shift+f3') %]" 
285               eg-accesskey-desc="[% l('Retrieve Last Bib Record') %]">
286               <span class="glyphicon glyphicon-tag"></span>
287               [% l('Retrieve Bib Record by TCN') %]
288             </a>
289           </li>
290           <li>
291             <a href="" ng-click="retrieveLastRecord()" target="_self"
292               eg-accesskey="[% l('shift+f8') %]" 
293               eg-accesskey-desc="[% l('Retrieve Last Bib Record') %]">
294               <span class="glyphicon glyphicon-share-alt"></span>
295               [% l('Retrieve Last Bib Record') %]
296             </a>
297           </li>
298           <li class="divider"></li>
299           <li>
300             <a href="./cat/catalog/new_bib" target="_self">
301               <span class="glyphicon glyphicon-plus"></span>
302               [% l('Create New MARC Record') %]
303             </a>
304           </li>
305           <li>
306             <a href="./cat/z3950/index" target="_self">
307               <span class="glyphicon glyphicon-cloud-download"></span>
308               [% l('Import Record from Z39.50') %]
309             </a>
310           </li>
311           <li>
312             <a href="/eg2/staff/cat/vandelay/import">
313               <span class="glyphicon glyphicon-transfer"></span>
314               [% l('MARC Batch Import/Export') %]
315             </a>
316           </li>
317           <li>
318             <a href="./cat/catalog/batchEdit" target="_self">
319               <span class="glyphicon glyphicon-edit"></span>
320               [% l('MARC Batch Edit') %]
321             </a>
322           </li>
323           <li class="divider"></li>
324           <li>
325             <a href="./cat/catalog/verifyURLs" target="_self">
326               <span class="glyphicon glyphicon-link"></span>
327               [% l('Link Checker') %]
328             </a>
329           </li>
330           <li class="divider"></li>
331           <li>
332             <a href="./cat/catalog/manageAuthorities" target="_self">
333               <span class="glyphicon glyphicon-lock"></span>
334               [% l('Manage Authorities') %]
335             </a>
336           </li>
337           <li>
338             <a href="./cat/catalog/retrieve_by_authority_id" target="_self">
339               <span class="glyphicon glyphicon-file"></span>
340               [% l('Retrieve Authority Record by ID') %]
341             </a>
342           </li>
343        </ul>
344       </li>
345
346       <!-- acquisitions -->
347       <li class="dropdown" uib-dropdown>
348         <a href uib-dropdown-toggle>[% l('Acquisitions') %]<b class="caret"></b>
349         </a>
350         <ul uib-dropdown-menu>
351           <li>
352             <a href="./acq/legacy/search/unified" target="_self">
353               <span class="glyphicon glyphicon-search"></span>
354               [% l('General Search') %]
355             </a>
356           </li>
357           <li class="divider"></li>
358           <li>
359             <a href="./acq/legacy/search/unified?ca=pl" target="_self">
360               <span class="glyphicon glyphicon-list"></span>
361               [% l('My Selection Lists') %]
362             </a>
363           </li>
364           <li>
365             <a href="./acq/legacy/picklist/brief_record" target="_self">
366               <span class="glyphicon glyphicon-pencil"></span>
367               [% l('New Brief Record') %]
368             </a>
369           </li>
370           <li>
371             <a href="./acq/requests/list" target="_self">
372               <span class="glyphicon glyphicon-thumbs-up"></span>
373               [% l('Patron Requests') %]
374             </a>
375           </li>
376           <li>
377             <a href="./acq/legacy/picklist/bib_search" target="_self">
378               <span class="glyphicon glyphicon-cloud-download"></span>
379               [% l('MARC Federated Search') %]
380             </a>
381           </li>
382           <li>
383             <a href="./acq/legacy/picklist/from_bib" target="_self">
384               <span class="glyphicon glyphicon-import"></span>
385               [% l('Load Catalog Record IDs') %]
386             </a>
387           </li>
388           <li class="divider"></li>
389           <li>
390             <a href="./acq/legacy/picklist/upload" target="_self">
391               <span class="glyphicon glyphicon-cloud-upload"></span>
392               [% l('Load MARC Order Records') %]
393             </a>
394           </li>
395           <li>
396             <a href="./acq/legacy/search/unified?ca=po" target="_self">
397               <span class="glyphicon glyphicon-shopping-cart"></span>
398               [% l('Purchase Orders') %]
399             </a>
400           </li>
401           <li>
402             <a href="./acq/legacy/po/create" target="_self">
403               <span class="glyphicon glyphicon-plus"></span>
404               [% l('Create Purchase Order') %]
405             </a>
406           </li>
407           <li class="divider"></li>
408           <li>
409             <a href="./acq/legacy/financial/claim_eligible" target="_self">
410               <span class="glyphicon glyphicon-question-sign"></span>
411               [% l('Claim-Ready Items') %]
412             </a>
413           </li>
414           <li>
415             <a href="./acq/legacy/search/unified?ca=inv" target="_self">
416               <span class="glyphicon glyphicon-usd"></span>
417               [% l('Open Invoices') %]
418             </a>
419           </li>
420           <li>
421             <a href="./acq/legacy/invoice/view?create=1" target="_self">
422               <span class="glyphicon glyphicon-credit-card"></span>
423               [% l('Create Invoice') %]
424             </a>
425           </li>
426        </ul>
427       </li>
428
429       <!-- booking -->
430       <li class="dropdown" uib-dropdown>
431         <a href uib-dropdown-toggle>[% l('Booking') %]<b class="caret"></b>
432         </a>
433         <ul uib-dropdown-menu>
434           <li>
435             <a href="./booking/legacy/booking/reservation" target="_self">
436               <span class="glyphicon glyphicon-plus"></span>
437               [% l('Create Reservations') %]
438             </a>
439           </li>
440           <li>
441             <a href="./booking/legacy/booking/pull_list" target="_self">
442               <span class="glyphicon glyphicon-th-list"></span>
443               [% l('Pull List') %]
444             </a>
445           </li>
446           <li>
447             <a href="./booking/legacy/booking/capture" target="_self">
448               <span class="glyphicon glyphicon-pushpin"></span>
449               [% l('Capture Resources') %]
450             </a>
451           </li>
452           <li>
453             <a href="./booking/legacy/booking/pickup" target="_self">
454               <span class="glyphicon glyphicon-export"></span>
455               [% l('Pick Up Reservations') %]
456             </a>
457           </li>
458           <li>
459             <a href="./booking/legacy/booking/return" target="_self">
460               <span class="glyphicon glyphicon-import"></span>
461               [% l('Return Reservations') %]
462             </a>
463           </li>
464         </ul>
465       </li>
466
467       <!-- admin -->
468       <li class="dropdown" uib-dropdown>
469         <a href uib-dropdown-toggle>[% l('Administration') %]<b class="caret"></b></a>
470         <ul uib-dropdown-menu>
471           <li>
472             <a href="./admin/workstation/index" target="_self">
473               <span class="glyphicon glyphicon-hdd"></span>
474               [% l('Workstation') %]
475             </a>
476           </li>
477           <li>
478             <a href="./admin/user_perms" target="_self">
479               <span class="glyphicon glyphicon-user"></span>
480               [% l('User Permission Editor') %]
481             </a>
482           </li>
483           <li>
484             <a href="/eg2/staff/admin/server/splash">
485               <span class="glyphicon glyphicon-briefcase"></span>
486               [% l('Server Administration') %]
487             </a>
488           </li>
489           <li>
490             <a href="./admin/local/index" target="_self">
491               <span class="glyphicon glyphicon-picture"></span>
492               [% l('Local Administration') %]
493             </a>
494           </li>
495           <li>
496             <a href="/eg2/staff/admin/acq/splash">
497               <span class="glyphicon glyphicon-usd"></span>
498               [% l('Acquisitions Administration') %]
499             </a>
500           </li>
501           <li>
502             <a href="./admin/serials/index" target="_self">
503               <span class="glyphicon glyphicon-paperclip"></span>
504               [% l('Serials Administration') %]
505             </a>
506           </li>
507           <li>
508             <a href="/eg2/staff/admin/booking/splash" target="_self">
509               <span class="glyphicon glyphicon-calendar"></span>
510               [% l('Booking Administration') %]
511             </a>
512           </li>
513           <li>
514             <a href="./reporter/legacy/main" target="_self">
515               <span class="glyphicon glyphicon-object-align-bottom"></span>
516               [% l('Reports') %]
517             </a>
518           </li>
519         </ul> <!-- admin dropdown -->
520       </li>
521     </ul> <!-- end left side entries -->
522
523     <!-- entries along the right side of the navbar -->
524     <ul class="nav navbar-nav navbar-right" style='margin-right: 6px;'>
525       <li>
526         <a ng-cloak ng-show="username" title="{{currentToken()}}"
527           ng-init="workstation = '[% l('<no workstation>') %]'">
528             {{username}} @ {{workstation}}
529         </a>
530       </li>
531
532       <!-- locale selector.  
533         only shown if multiple locales are registered -->
534       [% IF ctx.locales.keys.size > 1 %]
535       <li class="dropdown" uib-dropdown>
536         <a href uib-dropdown-toggle>
537           [% lcl = ctx.locale;  ctx.locales.$lcl %]
538           <span class="glyphicon glyphicon-flag"></span>
539         </a>
540         <ul uib-dropdown-menu>
541         [% FOR locale IN ctx.locales.keys.sort %]
542           <!-- disable the selected locale -->
543           <li ng-class="{disabled : '[% ctx.locale %]'=='[% locale %]'}">
544             <a href="" ng-click="applyLocale('[% locale %]')">
545                 [% ctx.locales.$locale %]
546             </a>
547           </li>
548         [% END %]
549         </ul>
550       </li>
551       [% END %]
552
553       <li class="dropdown" ng-show="username" uib-dropdown>
554         <a href class="glyphicon glyphicon-list" 
555           uib-dropdown-toggle></a>
556         <ul uib-dropdown-menu>
557           <li ng-if="!op_changed">
558             <a href="" ng-click="changeOperator()">
559               <span class="glyphicon glyphicon-random"></span>
560               [% l('Change Operator') %]
561             </a>
562           </li>
563           <li ng-if="op_changed">
564             <a href="" ng-click="changeOperatorUndo()">
565               <span class="glyphicon glyphicon-random"></span>
566               [% l('Restore Operator') %]
567             </a>
568           </li>
569           <li>
570             <a href="./login" ng-click="logout()" target="_self">
571               <span class="glyphicon glyphicon-log-out"></span>
572               [% l('Log Out') %]
573             </a>
574           </li>
575           <li>
576             <a href="./about" target="_self">
577               <span class="glyphicon glyphicon-question-sign"></span>
578               [% l('About') %]
579             </a>
580           </li>
581           <li class="divider"></li>
582           <li class="disabled">
583             <a href disabled="disabled">
584               <span
585                 title="[% l('Hatch Connection Status') %]"
586                 class="glyphicon glyphicon-transfer"
587                 ng-class="{'connect-status-ok' : hatchConnected()}">
588               </span>
589               [% l('Hatch') %]
590             </a>
591           </li>
592         </ul>
593       </li>
594     </ul>
595   </div>
596 </div>
597
598