alertmon/views/index.hbs

32 lines
871 B
Handlebars
Raw Normal View History

{{!< 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>
</tr>
</thead>
<tbody>
{{#each cores}}
<tr>
<td>
<a href="https://particle.kaplon.us/core/{{this.coreId}}">
{{#if this.coreName}}
{{this.coreName}}
{{else}}
{{this.coreId}}
{{/if}}
</a>
</td>
<td>{{this.locationDesc}}</td>
<td>{{this.MaxPub}}</td>
<td>{{this.MaxStatus}}</td>
</tr>
{{/each}}
</tbody>
</table>