diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2019-12-10 16:02:54 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-10 16:02:54 +0000 |
| commit | 50e1fcaa5e7369a64829552fc96cd24c787706c9 (patch) | |
| tree | f1350147393a2153246e76f5438613c2f3725c53 /searx/templates/oscar/time-range.html | |
| parent | f7a0510ac0e1853e3662b39254f3eb9be0efa2b0 (diff) | |
| parent | 7fbb15e05070de26c3b5b1958a2c2a42208bbe8b (diff) | |
Merge pull request #1671 from dalf/tidy-oscar
[mod] tidy oscar HTML output
Diffstat (limited to 'searx/templates/oscar/time-range.html')
| -rw-r--r-- | searx/templates/oscar/time-range.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/searx/templates/oscar/time-range.html b/searx/templates/oscar/time-range.html index d5efe9182..166b61dd6 100644 --- a/searx/templates/oscar/time-range.html +++ b/searx/templates/oscar/time-range.html @@ -1,17 +1,17 @@ -<select name="time_range" id="time-range" class="custom-select form-control"> +<select name="time_range" id="time-range" class="custom-select form-control">{{- "" -}} <option id="time-range-anytime" value="" {{ "selected" if time_range=="" or not time_range else ""}}> - {{ _('Anytime') }} - </option> + {{- _('Anytime') -}} + </option>{{- "" -}} <option id="time-range-day" value="day" {{ "selected" if time_range=="day" else ""}}> - {{ _('Last day') }} - </option> + {{- _('Last day') -}} + </option>{{- "" -}} <option id="time-range-week" value="week" {{ "selected" if time_range=="week" else ""}}> - {{ _('Last week') }} - </option> + {{- _('Last week') -}} + </option>{{- "" -}} <option id="time-range-month" value="month" {{ "selected" if time_range=="month" else ""}}> - {{ _('Last month') }} - </option> + {{- _('Last month') -}} + </option>{{- "" -}} <option id="time-range-year" value="year" {{ "selected" if time_range=="year" else ""}}> - {{ _('Last year') }} - </option> + {{- _('Last year') -}} + </option>{{- "" -}} </select> |