18 lines
380 B
Handlebars
18 lines
380 B
Handlebars
|
{{!< default}}
|
||
|
|
||
|
<h1>Alerts from a single Particle Core:</h1>
|
||
|
<ul>
|
||
|
{{! try to add header to list pretty core name and locale text (not sure how to pass this from node}}
|
||
|
{{#each alerts}}
|
||
|
<li>{{this.coreId}}: {{this.published_at}}</li>
|
||
|
{{/each}}
|
||
|
</ul>
|
||
|
|
||
|
<script>
|
||
|
setTimeout(
|
||
|
function() {
|
||
|
location.reload();
|
||
|
}, 5000
|
||
|
);
|
||
|
</script>
|