
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
21 lines
769 B
HTML
21 lines
769 B
HTML
<div>
|
|
<md-content>
|
|
<div class="server-overview" layout="column">
|
|
<!-- subheader -->
|
|
<div class="group-heading" layout="row">
|
|
<div class="label">{{routeParams.grouping | ucfirst}}: <span class="bold">{{ (groupName) || "blank" }}</span></div>
|
|
</div>
|
|
<!-- render group data -->
|
|
<div ng-include="'components/dashboard/views/partials/groupItem.html'"></div>
|
|
<div class="footer">
|
|
<!-- Alternate box inside a box -->
|
|
<div ng-if="group.kind == 'grouping'">
|
|
{{group.kind}}
|
|
<div ng-repeat="(groupName,group) in group.items" ng-include="'components/dashboard/views/partials/groupBox.html'"></div>
|
|
</div>
|
|
<md-divider></md-divider>
|
|
</div>
|
|
</div>
|
|
</md-content>
|
|
</div>
|