Matteo Scandolo | 266907e | 2016-12-20 13:41:42 -0800 | [diff] [blame] | 1 | <!--<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 Scandolo | a8a6fbb | 2016-12-21 16:59:08 -0800 | [diff] [blame] | 30 | <img class="img-responsive" ng-src="{{vm.getLogo()}}" alt=""> |
| 31 | <span>v.{{vm.version}}</span> |
Matteo Scandolo | 266907e | 2016-12-20 13:41:42 -0800 | [diff] [blame] | 32 | </a> |
| 33 | </div> |
| 34 | <div id="navbar" class="navbar-collapse collapse"> |
| 35 | <minimaliza-menu></minimaliza-menu> |
Matteo Scandolo | 67c105f | 2017-01-09 09:30:52 -0800 | [diff] [blame] | 36 | <form class="navbar-form navbar-left"> |
| 37 | <input |
| 38 | type="text" |
| 39 | class="form-control" |
Matteo Scandolo | ac8c8c2 | 2017-01-09 15:04:32 -0800 | [diff] [blame] | 40 | placeholder="Navigate routes (press 'f' to select)" |
Matteo Scandolo | 67c105f | 2017-01-09 09:30:52 -0800 | [diff] [blame] | 41 | 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 Scandolo | 266907e | 2016-12-20 13:41:42 -0800 | [diff] [blame] | 46 | <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 Scandolo | a8a6fbb | 2016-12-21 16:59:08 -0800 | [diff] [blame] | 55 | <span class="profile-address">{{vm.userEmail}}</span> |
Matteo Scandolo | 266907e | 2016-12-20 13:41:42 -0800 | [diff] [blame] | 56 | <img src="../../images/profile.jpg" class="img-circle" alt=""> |
| 57 | </a> |
Matteo Scandolo | 63e43eb | 2016-12-14 14:18:53 -0800 | [diff] [blame] | 58 | </li> |
| 59 | </ul> |
| 60 | </div> |
Matteo Scandolo | 266907e | 2016-12-20 13:41:42 -0800 | [diff] [blame] | 61 | </div> |
| 62 | </nav> |