2015-07-06 22:08:08 -04:00
|
|
|
{{!< default}}
|
|
|
|
|
|
|
|
<h1>Select a monitor device:</h1>
|
2015-07-17 13:02:31 -04:00
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Device Name</th>
|
|
|
|
<th>Location</th>
|
|
|
|
<th>Last Update</th>
|
|
|
|
<th></th>
|
2015-07-28 14:07:56 -04:00
|
|
|
<th></th>
|
2015-07-17 13:02:31 -04:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{#each cores}}
|
2015-10-05 21:44:03 -04:00
|
|
|
<tr class="{{this.rowclass}}">
|
2015-07-17 13:02:31 -04:00
|
|
|
<td>
|
2015-10-05 21:44:03 -04:00
|
|
|
{{#if this.corename}}
|
2015-10-06 14:27:17 -04:00
|
|
|
<a href="https://particle.kaplon.us/core/{{this.coreid}}">{{this.corename}}</a>
|
2015-07-18 15:13:10 -04:00
|
|
|
{{else}}
|
2015-10-05 21:44:03 -04:00
|
|
|
<a href="https://particle.kaplon.us/core/{{this.coreid}}"># No Name #</a>
|
2015-07-18 15:13:10 -04:00
|
|
|
</br>
|
2015-07-20 13:28:53 -04:00
|
|
|
</br>
|
2015-10-05 21:44:03 -04:00
|
|
|
<a href="https://particle.kaplon.us/core/edit/{{this.coreid}}" class="btn btn-primary">Edit Details</a>
|
2015-07-18 15:13:10 -04:00
|
|
|
{{/if}}
|
|
|
|
</td>
|
|
|
|
<td>
|
2015-10-05 21:44:03 -04:00
|
|
|
{{#if this.locationdesc}}
|
|
|
|
{{this.locationdesc}}
|
2015-07-18 15:13:10 -04:00
|
|
|
{{else}}
|
|
|
|
# No Location #
|
|
|
|
</br>
|
2015-07-20 13:28:53 -04:00
|
|
|
</br>
|
2015-10-06 14:27:17 -04:00
|
|
|
<a href="https://particle.kaplon.us/core/edit/{{this.coreid}}" class="btn btn-primary">Edit Details</a>
|
2015-07-18 15:13:10 -04:00
|
|
|
{{/if}}
|
2015-07-17 13:02:31 -04:00
|
|
|
</td>
|
2015-10-05 21:44:03 -04:00
|
|
|
<td>{{this.maxpubdate}}</td>
|
|
|
|
<td>{{this.maxpubtime}}</td>
|
|
|
|
<td>{{this.maxstatus}}</td>
|
2015-07-17 13:02:31 -04:00
|
|
|
</tr>
|
|
|
|
{{/each}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|