2015-07-06 22:08:08 -04:00
|
|
|
{{!< default}}
|
|
|
|
|
2015-07-08 17:31:24 -04:00
|
|
|
{{! Grab 1st coreName value (it will be same value for entire set).}}
|
2015-07-09 10:44:58 -04:00
|
|
|
<h2>Alerts from Particle Core: {{alerts.0.coreName}} </h2>
|
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>
|
2015-07-06 22:08:08 -04:00
|
|
|
|
|
|
|
<script>
|
|
|
|
setTimeout(
|
|
|
|
function() {
|
|
|
|
location.reload();
|
2015-07-08 15:20:27 -04:00
|
|
|
}, 10000
|
2015-07-06 22:08:08 -04:00
|
|
|
);
|
|
|
|
</script>
|