summaryrefslogtreecommitdiff
path: root/searx/templates/oscar/time-range.html
diff options
context:
space:
mode:
authorPaul Braeuning <paul@paulgo.io>2022-05-03 18:47:35 +0200
committerGitHub <noreply@github.com>2022-05-03 18:47:35 +0200
commit31521f3a465fa2beb7e3fd7ed47621262a28f554 (patch)
treea9a896b08d98b0ddcaf65b2159c34326c77bf80b /searx/templates/oscar/time-range.html
parent8a79eb4d7b0265afc200ecf6c1d729274a065b18 (diff)
parentc3bb6c7059388308aa9843943ce2491856ef1596 (diff)
Merge pull request #1153 from return42/drop-oscar
[theme] peel out oscar from SearXNG development
Diffstat (limited to 'searx/templates/oscar/time-range.html')
-rw-r--r--searx/templates/oscar/time-range.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/searx/templates/oscar/time-range.html b/searx/templates/oscar/time-range.html
deleted file mode 100644
index 6087dd417..000000000
--- a/searx/templates/oscar/time-range.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{% 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>