alertmon/views/core.hbs

43 lines
1.0 KiB
Handlebars

{{!< default}}
<p>
<b>
{{! Grab 1st coreName value (it will be same value for entire set).}}
{{#if alerts.0.corename}}
Alerts from Particle Core: {{alerts.0.corename}}
{{else}}
Alerts from Particle Core: # No Name #
{{/if}}
</b>
<a href="https://particle.kaplon.us/core/edit/{{alerts.0.coreid}}" class="btn btn-primary">Edit Details</a>
<a href="https://particle.kaplon.us" class="btn btn-primary">Back to Device Listing</a>
</p>
<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
<th>Time</th>
<th>Status</th>
</tr>
</thead>
<tbody>
{{#each alerts}}
<tr class="{{this.rowclass}}">
<td>{{this.pubdate}}</td>
<td>{{this.pubtime}}</td>
<td>{{this.status}}</td>
</tr>
{{/each}}
</tbody>
</table>
<script>
setTimeout(
function() {
location.reload();
}, 10000
);
</script>