Files
old-spike/client/dashboard/layout/layout.rt

12 lines
601 B
Plaintext
Raw Normal View History

2016-02-22 14:36:07 -06:00
<div id="layout">
<div class="alert alert-warning" rt-if="this.state.requesting_data">Retrieving houses...</div>
<h4>Select household:</h4>
2016-02-29 18:20:00 -06:00
<select id="houses_select" rt-if="this.state.houses" class="form-control" onChange="{this.setHouse.bind(this)}" value="{this.props.params.house_id}">
2016-02-22 14:36:07 -06:00
<option rt-repeat="house in this.state.houses" value="{house.data.id}" key="{house.scoped_id}">{house.data.name}</option>
</select>
2016-02-29 18:20:00 -06:00
<button rt-if="this.state.house" onClick="{this.refreshData.bind(this)}" class="btn btn-xs btn-default">Refresh House Data</button>
2016-02-22 14:36:07 -06:00
2016-02-29 18:20:00 -06:00
{this.props.children}
2016-02-22 14:36:07 -06:00
</div>