blob: 8b9a25745e1db510a6f44779fe5fc55ad73a8773 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<template name="dates">
<div class="dates-wrapper">
<div class="dates">
<h2>Choose a month and a year</h2>
<form class="dates">
<div class="form-group">
{{#each months}}
{{> row}}
{{/each}}
</div>
<div class="form-group">
<div class="years">
{{#each years}}
{{> year}}
{{/each}}
</div>
</div>
<div class="error" style="display: none;">Apparently you don't have enough photos to create a statistic from, please choose another month and try again</div>
<button type="submit" class="dates" style="display: none;">Start</button>
</form>
</div>
</div>
</template>
<template name="row">
<div class="month-row">
{{#each this}}
{{> month}}
{{/each}}
</div>
</template>
<template name="month">
<div class="month-button">
<input type="radio" name="monthOptions" id="monthRadio{{val}}" value="{{val}}">
<label class="radio-inline" for="monthRadio{{val}}">{{name}}</label>
</div>
</template>
<template name="year">
<input type="radio" name="yearOptions" id="yearRadio{{this}}" value="{{this}}">
<label class="radio-inline" for="yearRadio{{this}}">{{this}}</label>
</template>
|