Removed unnecessary extra layer in resource folder structure.
This commit is contained in:
parent
94485b5633
commit
d8a1b66738
190 changed files with 11 additions and 11 deletions
24
hal-core/resources/web/property_config.tmpl
Normal file
24
hal-core/resources/web/property_config.tmpl
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<h1 class="page-header">Hal Properties</h1>
|
||||
|
||||
<div class="col-md-12">
|
||||
<div class="panel panel-default drop-shadow">
|
||||
<div class="panel-heading">Registered properties</div>
|
||||
<div class="panel-body">
|
||||
|
||||
<table class="table table-hover table-condensed">
|
||||
<thead>
|
||||
<th class="col-md-2">Name</th>
|
||||
<th class="col-md-6">Value</th>
|
||||
<th class="col-md-4">Description</th>
|
||||
</thead>
|
||||
{{#properties}}
|
||||
<tr>
|
||||
<td>{{.getKey()}}:</td>
|
||||
<td><input name="{{.getKey()}}" value="{{.getValue()}}" disabled style="width: 100%"></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
{{/properties}}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue