moved templates to WeContent folder
This commit is contained in:
parent
1d34162bb5
commit
29def452b6
16 changed files with 11465 additions and 29 deletions
24
resources/WebContent/page/ServiceStatusPage.tmpl
Normal file
24
resources/WebContent/page/ServiceStatusPage.tmpl
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<div class="col-md-12"><div class="panel panel-default">
|
||||
<div class="panel-heading">Service Status</div>
|
||||
<div class="panel-body">
|
||||
<table class="table small hdd-detail">
|
||||
<thead><tr>
|
||||
<th data-field="service">Service</th>
|
||||
<th data-field="status">Status</th>
|
||||
<th data-field="action" >Action</th>
|
||||
</tr></thead>
|
||||
{{#services}}
|
||||
<tr>
|
||||
<td>{{.name}}</td>
|
||||
<td>
|
||||
{{#.isRunning()}}<span class="label label-success">Running</span>{{/.isRunning()}}
|
||||
{{#.isUnresponsive()}}<span class="label label-warning">Unresponsive</span>{{/.isUnresponsive()}}
|
||||
{{#.isStopped()}}<span class="label label-danger">Stopped</span>{{/.isStopped()}}
|
||||
{{#.isUnknown()}}<span class="label label-default">Unknown</span>{{/.isUnknown()}}
|
||||
</td>
|
||||
<td><input type="checkbox" class="switch" checked></td>
|
||||
</tr>
|
||||
{{/services}}
|
||||
</table>
|
||||
</div>
|
||||
</div></div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue