Introduced AbstractController
This commit is contained in:
parent
267eda7afd
commit
d759ebcd77
8 changed files with 103 additions and 68 deletions
|
|
@ -34,6 +34,25 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-12">
|
||||
<div class="panel panel-default drop-shadow">
|
||||
<div class="panel-heading">Active Controllers</div>
|
||||
<div class="panel-body">
|
||||
|
||||
<table class="table table-hover table-condensed">
|
||||
<thead>
|
||||
<th class="col-md-3">Name</th>
|
||||
</thead>
|
||||
{{#controllers}}
|
||||
<tr>
|
||||
<td>{{.getClass().getName()}}</td>
|
||||
</tr>
|
||||
{{/controllers}}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$(function (){
|
||||
$(".toggle-switch").on("switchChange.bootstrapSwitch", function (event, state) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue