diff options
author | Noémi Ványi <sitbackandwait@gmail.com> | 2016-12-11 16:36:32 +0100 |
---|---|---|
committer | Noémi Ványi <sitbackandwait@gmail.com> | 2016-12-11 16:58:31 +0100 |
commit | 2fc1091b7fbd76189754767e2da8315e04ca1e47 (patch) | |
tree | 84773bab86e805ae40f8e6941dad52e649825c06 /searx/templates | |
parent | 6b6007fc78f47099d84099c6d6c23e2cd213b82f (diff) | |
download | searxng-2fc1091b7fbd76189754767e2da8315e04ca1e47.tar.gz searxng-2fc1091b7fbd76189754767e2da8315e04ca1e47.zip |
add "Last year" option to time range selection
Diffstat (limited to 'searx/templates')
-rw-r--r-- | searx/templates/oscar/time-range.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/searx/templates/oscar/time-range.html b/searx/templates/oscar/time-range.html index 4a13c4fdb..6ce1b91cb 100644 --- a/searx/templates/oscar/time-range.html +++ b/searx/templates/oscar/time-range.html @@ -11,4 +11,7 @@ <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> |