Updated start/end date for metrics queries

This commit is contained in:
Sebastian Henschel 2017-04-25 16:01:37 +02:00
parent 79a6cf5c6c
commit 0aae47ee41

View File

@ -12,15 +12,15 @@
<div class="row">
<div class="col-xs-6 col-sm-3">
<div class="form-group">
<label for="from_start_date">From Start Date</label>
<input type="date" class="form-control" id="from_start_date" name="from_start_date" value="{{ request.GET.from_start_date }}" />
<label for="start_date">Start Date</label>
<input type="date" class="form-control" id="start_date" name="start_date" value="{{ request.GET.start_date }}" />
</div>
</div>
<div class="col-xs-6 col-sm-3">
<div class="form-group">
<label for="to_start_date">To Start Date</label>
<input type="date" class="form-control" id="to_start_date" name="to_start_date" value="{{ request.GET.to_start_date }}" />
<label for="end_date">End Date</label>
<input type="date" class="form-control" id="end_date" name="end_date" value="{{ request.GET.end_date }}" />
</div>
</div>