d96634b5ae
This is the initial check in of the dashboard UI. Change-Id: I5621896191f3664ed504b38e7cdc405c422c76fd
43 lines
1.8 KiB
HTML
43 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
|
|
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<title>Compass Metrics</title>
|
|
<link rel="stylesheet" href="css/default.min.a9bd22e8.css" title="Dark">
|
|
|
|
<!-- script src="app/app.20ee1677.js"></script -->
|
|
<script src="app/app.js"></script>
|
|
|
|
<script>require(['app'], function () {})</script>
|
|
|
|
</head>
|
|
|
|
<body ng-cloak body-class>
|
|
|
|
<link rel="stylesheet" href="css/bootstrap.light.min.css" ng-if="dashboard.current.style === 'light'">
|
|
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
|
|
<link rel="stylesheet" href="css/font-awesome.min.css">
|
|
|
|
<div ng-repeat='alert in dashAlerts.list' class="alert-{{alert.severity}} dashboard-notice" ng-show="$last">
|
|
<button type="button" class="close" ng-click="dashAlerts.clear(alert)" style="padding-right:50px">×</button>
|
|
<strong>{{alert.title}}</strong> <span ng-bind-html='alert.text'></span> <div style="padding-right:10px" class='pull-right small'> {{$index + 1}} alert(s) </div>
|
|
</div>
|
|
<div class="navbar navbar-static-top">
|
|
<div class="navbar-inner">
|
|
<div class="container-fluid">
|
|
<span class="brand"><img src="img/small.png" bs-tooltip="'Compass Metrics'" data-placement="bottom"> {{dashboard.current.title}}</span>
|
|
<ul class="nav pull-right" ng-controller='dashLoader' ng-init="init()" ng-include="'app/partials/dashLoader.html'">
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div ng-view ng-class="{'dashboard-fullscreen': fullscreen}"></div>
|
|
|
|
</body>
|
|
</html>
|