alertmon/views/core.hbs

19 lines
407 B
Handlebars
Raw Normal View History

{{!< 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}}
{{alerts.0.coreName}}
{{#each alerts}}
<li>{{this.published_at}}: {{this.status}}</li>
{{/each}}
</ul>
<script>
setTimeout(
function() {
location.reload();
}, 10000
);
</script>