alertmon/views/index.hbs

44 lines
1.5 KiB
Handlebars

{{!< default}}
<h1>Select a monitor device:</h1>
<table class="table table-striped">
<thead>
<tr>
<th>Device Name</th>
<th>Location</th>
<th>Last Update</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
{{#each cores}}
<tr class="{{this.rowclass}}">
<td>
{{#if this.corename}}
<a href="https://particle.kaplon.us/core/{{this.coreid}}">{{this.corename}}</a>
{{else}}
<a href="https://particle.kaplon.us/core/{{this.coreid}}"># No Name #</a>
</br>
</br>
<a href="https://particle.kaplon.us/core/edit/{{this.coreid}}" class="btn btn-primary">Edit Details</a>
{{/if}}
</td>
<td>
{{#if this.locationdesc}}
{{this.locationdesc}}
{{else}}
# No Location #
</br>
</br>
<a href="https://particle.kaplon.us/core/edit/{{this.coreid}}" class="btn btn-primary">Edit Details</a>
{{/if}}
</td>
<td>{{this.maxpubdate}}</td>
<td>{{this.maxpubtime}}</td>
<td>{{this.maxstatus}}</td>
</tr>
{{/each}}
</tbody>
</table>