hal/web-resource/event_detail.tmpl
Ziver Koc 87913dfd28 Added Event overview page. issue 5
Former-commit-id: 6ee75491189dc68b53b928436ef5d06a81b81568
2016-01-22 10:52:28 +01:00

22 lines
702 B
Cheetah
Executable file

<h1 class="page-header">Details for <a href="#">{{event.getName()}}</a></h1>
<div class="col-md-12">
<div class="panel panel-default drop-shadow">
<div class="panel-heading">History data</div>
<div class="panel-body">
<table class="table table-hover table-condensed">
<thead>
<th class="col-md-6">Timestamp</th>
<th class="col-md-2">Data</th>
</thead>
{{#history}}
<tr>
<td>{{.timestamp}}</a></td>
<td>{{.data()}}</td>
</tr>
{{/history}}
</table>
</div>
</div>
</div>