
remove node modules make new data file for web ui initial commit of dashboard switch back to non SSL request move port splitting to common place; add to node resource location Signed-off-by: Patrick Reilly <patrick@kismatic.io> various path fixes make svg path relative work around missing mime type Signed-off-by: Patrick Reilly <patrick@kismatic.io> fix paths fix karma path remove bad protractor test
34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
<md-grid-list class="" md-cols="6" md-row-height="1:1" md-gutter="8px" ng-repeat="(serverIp, groupPods) in podsByServer">
|
|
<md-grid-tile md-rowspan="2" md-colspan="2" class="gray">
|
|
<md-grid-tile-footer>
|
|
<div class="pod-title"><h2>{{serverIp}} overview</h2></div>
|
|
</md-grid-tile-footer>
|
|
</md-grid-tile>
|
|
|
|
<md-grid-tile class="color-{{podIndexFromName(pod)}} {{podStatusClass(pod)}}" md-rowspan="1" md-colspan="1" ng-repeat="pod in groupPods" >
|
|
<md-grid-tile-header class="clear-bg">
|
|
|
|
<div layout="row">
|
|
<div class="labels"><span ng-repeat="(label, value) in otherLabels(pod.labels)">{{label}}: {{value}}<span ng-show="!$last">, </span></span></div>
|
|
|
|
<div flex="20" class="restarts" ng-show="getPodRestarts(pod) > 0">
|
|
<md-button class="md-fab restart-button">
|
|
{{getPodRestarts(pod)}}
|
|
</md-button>
|
|
</div>
|
|
</div>
|
|
|
|
</md-grid-tile-header>
|
|
<div class="inner-box">
|
|
|
|
<div ng-show="podStatusClass(pod)">Status: {{pod.currentState.status}}</div>
|
|
</div>
|
|
<md-grid-tile-footer>
|
|
|
|
<div class="pod-host">{{pod.labels.name}}</div>
|
|
<div><a ng-href="/#/dashboard/pods/{{ pod.id }}"><h3>{{ pod.id }}</h3></a></div>
|
|
|
|
</md-grid-tile-footer>
|
|
</md-grid-tile>
|
|
|
|
</md-grid-list> |