
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
18 lines
842 B
HTML
18 lines
842 B
HTML
<div dashboard-header></div>
|
|
<div class="dashboard">
|
|
<div ng-controller="ListPodsCtrl" style="padding:25px;" class="list-pods">
|
|
<md-whiteframe layout-margin class="md-whiteframe-z2">
|
|
<md-content>
|
|
<div>
|
|
<md-button class="md-primary" ng-click="serverView = false">By Name</md-button> |
|
|
<md-button class="md-primary" ng-click="serverView = true">By Server</md-button>
|
|
<div style="float:right;"><md-button class="md-primary" ng-href="/#/dashboard/pods">View Pod Listing</md-button></div>
|
|
</div>
|
|
<div class="pod-group" ng-show="!serverView" ng-include="'components/dashboard/views/partials/podTilesByName.html'"></div>
|
|
<div class="pod-group" ng-show="serverView" ng-include="'components/dashboard/views/partials/podTilesByServer.html'"></div>
|
|
</md-content>
|
|
</md-whiteframe>
|
|
</div>
|
|
</div>
|
|
<div dashboard-footer></div>
|