30 lines
No EOL
814 B
Handlebars
30 lines
No EOL
814 B
Handlebars
<div class="box">
|
|
<form role="form">
|
|
<table class="table">
|
|
<tbody>
|
|
{{#each datetime in datetimes}}
|
|
<tr>
|
|
<td>
|
|
{{formattedDate datetime.title 'll'}}
|
|
</td>
|
|
{{#each time in datetime.contents.times}}
|
|
<td>
|
|
<div class="form-group">
|
|
{{input value=time.value type="time" class="form-control"}}
|
|
</div>
|
|
</td>
|
|
{{/each}}
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="form-group">
|
|
<button {{action "moreTimes"}} class="btn btn-default"> more inputs for time </button>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<button {{action "submitDatetimes"}} class="btn btn-default"> next </button>
|
|
</div>
|
|
</form>
|
|
</div> |