43 lines
1.0 KiB
Handlebars
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>
|