You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1017 B
19 lines
1017 B
{% from 'oscar/macros.html' import custom_select_class %} |
|
<label class="visually-hidden" for="time-range">{{ _('Time range') }}</label> |
|
<select name="time_range" id="time-range" class="{{ custom_select_class(rtl) }} form-control" accesskey="t">{{- "" -}} |
|
<option id="time-range-anytime" value="" {{ "selected" if time_range=="" or not time_range else ""}}> |
|
{{- _('Anytime') -}} |
|
</option>{{- "" -}} |
|
<option id="time-range-day" value="day" {{ "selected" if time_range=="day" else ""}}> |
|
{{- _('Last day') -}} |
|
</option>{{- "" -}} |
|
<option id="time-range-week" value="week" {{ "selected" if time_range=="week" else ""}}> |
|
{{- _('Last week') -}} |
|
</option>{{- "" -}} |
|
<option id="time-range-month" value="month" {{ "selected" if time_range=="month" else ""}}> |
|
{{- _('Last month') -}} |
|
</option>{{- "" -}} |
|
<option id="time-range-year" value="year" {{ "selected" if time_range=="year" else ""}}> |
|
{{- _('Last year') -}} |
|
</option>{{- "" -}} |
|
</select>
|
|
|