diff options
Diffstat (limited to 'templates/web/base/dashboard/index.html')
-rw-r--r-- | templates/web/base/dashboard/index.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/templates/web/base/dashboard/index.html b/templates/web/base/dashboard/index.html index e47798573..b3cf68e0a 100644 --- a/templates/web/base/dashboard/index.html +++ b/templates/web/base/dashboard/index.html @@ -133,7 +133,6 @@ <h2>[% loc('Reports') %]</h2> - </select> <p>[% loc('Report state:') %] <select class="form-control" name="state"> <option value=''>[% loc('All') %]</option> [% FOR group IN filter_states %] @@ -143,6 +142,14 @@ [% END %] [% END %] </select> +</p> +<p> +<label for="start_date">[% loc('Start Date') %]</label><input name="start_date" type="date" value="[% start_date | html %]"> +</p> + +<p> +<label for="end_date">[% loc('End Date') %]</label><input name="end_date" type="date" value="[% end_date | html %]"> +</p> <input type="submit" class="btn" value="[% loc('Look up') %]"> <a class="export_as_csv" href="[% c.req.uri_with({ export => 1 }) %]">[% loc('Export as CSV') %]</a> |