Added page for viewing properties.

This commit is contained in:
Ziver Koc 2020-06-22 21:55:04 +02:00
parent 584760b6ba
commit cf3c922fa2
6 changed files with 83 additions and 7 deletions

View file

@ -0,0 +1,24 @@
<h1 class="page-header">Event Overview</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">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>