{{!< 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>
        </tr>
    </thead>
    <tbody>
        {{#each cores}}
            <tr>
                <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.MaxPub}}</td>
                <td>{{this.MaxStatus}}</td>
            </tr>
        {{/each}}
    </tbody>
</table>