blob: 50252588fb2cdaeb4357f4ee3ba55fdece9fc0ee [file] [log] [blame]
Matteo Scandolo266907e2016-12-20 13:41:42 -08001<!--<header class="header">-->
2 <!--<p class="header-title">-->
3 <!--<a href="#/" target="_blank">-->
4 <!--{{vm.title}}-->
5 <!--</a>-->
6 <!--</p>-->
7 <!--<p class="header-date notification">-->
8 <!--<i ng-if="vm.newNotifications.length > 0" class="badge"></i>-->
9 <!--<i class="fa fa-bell" ng-click="vm.showNotification = !vm.showNotification"></i>-->
10 <!--<div class="notification-panel" ng-show="vm.showNotification">-->
11 <!--<ul>-->
12 <!--<li ng-repeat="n in vm.notifications track by $index" ng-click="vm.viewNotification(n)" ng-class="{viewed: n.viewed}">-->
13 <!--<b>{{n.model}}</b><br>-->
14 <!--<i>{{n.msg.object.name}} status is {{n.msg.object.backend_status}}</i>-->
15 <!--</li>-->
16 <!--</ul>-->
17 <!--</div>-->
18 <!--</p>-->
19<!--</header>-->
20
21
22<!-- Header -->
23<nav class="navbar navbar-default navbar-fixed-top">
24 <div class="container-fluid">
25 <div class="navbar-header">
26 <div id="mobile-menu">
27 <minimaliza-menu></minimaliza-menu>
28 </div>
29 <a class="navbar-brand" href="#/">
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080030 <img class="img-responsive" ng-src="{{vm.getLogo()}}" alt="">
31 <span>v.{{vm.version}}</span>
Matteo Scandolo266907e2016-12-20 13:41:42 -080032 </a>
33 </div>
34 <div id="navbar" class="navbar-collapse collapse">
35 <minimaliza-menu></minimaliza-menu>
Matteo Scandolo67c105f2017-01-09 09:30:52 -080036 <form class="navbar-form navbar-left">
37 <input
38 type="text"
39 class="form-control"
Matteo Scandoloac8c8c22017-01-09 15:04:32 -080040 placeholder="Navigate routes (press 'f' to select)"
Matteo Scandolo67c105f2017-01-09 09:30:52 -080041 style="width: 275px"
42 ng-model="vm.query"
43 uib-typeahead="state.label for state in vm.states | filter:$viewValue | limitTo:8"
44 typeahead-on-select="vm.routeSelected($item, $model, $label)">
45 </form>
Matteo Scandolo266907e2016-12-20 13:41:42 -080046 <ul class="nav navbar-nav navbar-right">
47 <!--<li class="dropdown">-->
48 <!--<a ui-sref="main.versions">-->
49 <!--<i class="fa fa-bell"></i>-->
50 <!--<span ng-if="vm.newNotifications.length > 0" class="label label-warning pull-right">{{vm.newNotifications.length}}</span>-->
51 <!--</a>-->
52 <!--</li>-->
53 <li class=" profil-link">
54 <a ui-sref="commonviews.login">
Matteo Scandoloa8a6fbb2016-12-21 16:59:08 -080055 <span class="profile-address">{{vm.userEmail}}</span>
Matteo Scandolo266907e2016-12-20 13:41:42 -080056 <img src="../../images/profile.jpg" class="img-circle" alt="">
57 </a>
Matteo Scandolo63e43eb2016-12-14 14:18:53 -080058 </li>
59 </ul>
60 </div>
Matteo Scandolo266907e2016-12-20 13:41:42 -080061 </div>
62</nav>