44 lines
1.5 KiB
Handlebars
44 lines
1.5 KiB
Handlebars
{{!< default}}
|
|
|
|
<h1>Select a monitor device:</h1>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Device Name</th>
|
|
<th>Location</th>
|
|
<th>Last Update</th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each cores}}
|
|
<tr class="{{this.rowClass}}">
|
|
<td>
|
|
{{#if this.coreName}}
|
|
<a href="https://particle.kaplon.us/core/{{this.coreId}}">{{this.coreName}}</a>
|
|
{{else}}
|
|
<a href="https://particle.kaplon.us/core/{{this.coreId}}"># No Name #</a>
|
|
</br>
|
|
</br>
|
|
<a href="https://particle.kaplon.us/core/edit/{{this.coreId}}" class="btn btn-primary">Edit Details</a>
|
|
{{/if}}
|
|
</td>
|
|
<td>
|
|
{{#if this.locationDesc}}
|
|
{{this.locationDesc}}
|
|
{{else}}
|
|
# No Location #
|
|
</br>
|
|
</br>
|
|
<a href="https://particle.kaplon.us/core/edit/{{this.coreId}}" class="btn btn-primary">Edit Details</a>
|
|
{{/if}}
|
|
</td>
|
|
<td>{{this.MaxPubDate}}</td>
|
|
<td>{{this.MaxPubTime}}</td>
|
|
<td>{{this.MaxStatus}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|