diff options
| author | Yuval Adam <yuval@y3xz.com> | 2015-06-10 16:38:08 +0300 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2015-06-10 16:38:08 +0300 |
| commit | f6cfae2649a3447bee4df4d6a3e9286531a71d17 (patch) | |
| tree | 187a4e30c03899854bc6097b58638475d2a06fa1 /client/templates | |
| parent | 918bdef7c3c02bc33802ab094b222afd054ba08f (diff) | |
Implement instagram query by dates
Diffstat (limited to 'client/templates')
| -rw-r--r-- | client/templates/dates.html | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/client/templates/dates.html b/client/templates/dates.html index 59b887f..d4ff115 100644 --- a/client/templates/dates.html +++ b/client/templates/dates.html @@ -1,3 +1,27 @@ <template name="dates"> - <h2>select</h2> + <form class="dates"> + <div class="form-group"> + {{#each months}} + {{> month}} + {{/each}} + </div> + <div class="form-group"> + {{#each years}} + {{> year}} + {{/each}} + </div> + <button type="submit" class="dates btn btn-default">Start</button> + </form> +</template> + +<template name="month"> + <label class="radio-inline"> + <input type="radio" name="monthOptions" id="monthRadio{{this}}" value="{{this}}"> {{this}} + </label> +</template> + +<template name="year"> + <label class="radio-inline"> + <input type="radio" name="yearOptions" id="yearRadio{{this}}" value="{{this}}"> {{this}} + </label> </template> |
