Added plugin page for viewing plugin information
This commit is contained in:
parent
4f7476bb84
commit
fc11ae264f
10 changed files with 83 additions and 6 deletions
22
resource/web/plugin_config.tmpl
Normal file
22
resource/web/plugin_config.tmpl
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<h1 class="page-header">Plugins</h1>
|
||||
|
||||
<div class="col-md-12">
|
||||
<div class="panel panel-default drop-shadow">
|
||||
<div class="panel-heading">Local Events</div>
|
||||
<div class="panel-body">
|
||||
|
||||
<table class="table table-hover table-condensed">
|
||||
<thead>
|
||||
<th class="col-md-2">Name</th>
|
||||
<th class="col-md-8">Version</th>
|
||||
</thead>
|
||||
{{#plugins}}
|
||||
<tr>
|
||||
<td>{{.getName()}}</td>
|
||||
<td>{{.getVersion()}}</td>
|
||||
</tr>
|
||||
{{/plugins}}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
<h1 class="page-header">Event Overview</h1>
|
||||
<h1 class="page-header">Hal Properties</h1>
|
||||
|
||||
<div class="col-md-12">
|
||||
<div class="panel panel-default drop-shadow">
|
||||
Loading…
Add table
Add a link
Reference in a new issue