2015-07-27 15:10:11 +00:00
|
|
|
<div class="col-md-12">
|
2015-08-04 12:59:24 +00:00
|
|
|
<div class="panel panel-default">
|
2015-07-27 15:10:11 +00:00
|
|
|
<div class="panel-heading">Service Status</div>
|
|
|
|
|
<div class="panel-body">
|
2015-08-04 12:59:24 +00:00
|
|
|
<table class="table table-hover">
|
2015-07-27 15:10:11 +00:00
|
|
|
<thead><tr>
|
|
|
|
|
<th data-field="service">Service</th>
|
2015-08-04 12:59:24 +00:00
|
|
|
<th data-field="desc">Description</th>
|
|
|
|
|
<th data-field="action" class="text-right">Actions</th>
|
2015-07-27 15:10:11 +00:00
|
|
|
</tr></thead>
|
2015-08-04 12:59:24 +00:00
|
|
|
{{! #data}}
|
|
|
|
|
<tr {{^.enabled}}class="active"{{/.enabled}}>
|
2015-07-27 15:10:11 +00:00
|
|
|
<td>{{.getName()}}</td>
|
2015-08-04 12:59:24 +00:00
|
|
|
<td>{{.getValue()}}</td>
|
|
|
|
|
<td class="text-right">
|
|
|
|
|
<button type="button" class="btn btn-primary btn-xs">Edit</button>
|
|
|
|
|
{{^.enabled}}<button type="button" class="btn btn-default btn-xs">Disable</button>{{/.enabled}}
|
|
|
|
|
{{#.enabled}}<button type="button" class="btn btn-success btn-xs">Activate</button>{{/.enabled}}
|
|
|
|
|
<button type="button" class="btn btn-danger btn-xs">Remove</button>
|
|
|
|
|
</td>
|
2015-07-27 15:10:11 +00:00
|
|
|
</tr>
|
2015-08-04 12:59:24 +00:00
|
|
|
{{! /data}}
|
2015-07-27 15:10:11 +00:00
|
|
|
</table>
|
|
|
|
|
</div>
|
2015-08-04 12:59:24 +00:00
|
|
|
<div class="panel-footer text-right">
|
|
|
|
|
<button type="button" class="btn btn-primary">Cancel</button>
|
|
|
|
|
<button type="button" class="btn btn-success">Save</button>
|
|
|
|
|
</div>
|
2015-07-27 15:10:11 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|