alertmon/views/core.hbs

34 lines
713 B
Handlebars
Raw Normal View History

{{!< default}}
2015-07-08 17:31:24 -04:00
{{! Grab 1st coreName value (it will be same value for entire set).}}
{{#if alerts.0.coreName}}
<h2>Alerts from Particle Core: {{alerts.0.coreName}} </h2>
{{else}}
<h2>Alerts from Particle Core: {{alerts.0.coreId}} </h2>
{{/if}}
2015-07-08 17:31:24 -04:00
<table class="table table-striped">
<thead>
<tr>
<th>Timestamp</th>
<th>Status</th>
</tr>
</thead>
<tbody>
{{#each alerts}}
<tr>
<td>{{this.published_at}}</td>
<td>{{this.status}}</td>
</tr>
{{/each}}
</tbody>
</table>
<script>
setTimeout(
function() {
location.reload();
}, 10000
);
</script>