17 lines
491 B
Handlebars
17 lines
491 B
Handlebars
{{!< default}}
|
|
|
|
<h1>Select a monitor device:</h1>
|
|
<ul>
|
|
{{#each cores}}
|
|
<li>
|
|
<a href="https://particle.kaplon.us/core/{{this.coreId}}">
|
|
{{#if this.coreName}}
|
|
{{this.coreName}}, {{this.locationDesc}}, {{this.MaxPub}}, {{this.MaxStatus}}
|
|
{{else}}
|
|
{{this.coreId}}, {{this.locationDesc}}, {{this.MaxPub}}, {{this.MaxStatus}}
|
|
{{/if}}
|
|
</a>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|