summaryrefslogtreecommitdiff
path: root/client/templates/dates.html
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-06-10 16:38:08 +0300
committerYuval Adam <yuval@y3xz.com>2015-06-10 16:38:08 +0300
commitf6cfae2649a3447bee4df4d6a3e9286531a71d17 (patch)
tree187a4e30c03899854bc6097b58638475d2a06fa1 /client/templates/dates.html
parent918bdef7c3c02bc33802ab094b222afd054ba08f (diff)
Implement instagram query by dates
Diffstat (limited to 'client/templates/dates.html')
-rw-r--r--client/templates/dates.html26
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>