mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
[mod] tidy oscar HTML output
This commit is contained in:
parent
e9311ee776
commit
f34ac58752
12 changed files with 339 additions and 347 deletions
|
|
@ -1,12 +1,12 @@
|
|||
{% if preferences %}
|
||||
{% if preferences -%}
|
||||
<select class="custom-select form-control" name='language'>
|
||||
{% else %}
|
||||
{%- else -%}
|
||||
<select class="time_range custom-select form-control" id='language' name='language'>
|
||||
{% endif %}
|
||||
{%- endif -%}
|
||||
<option value="all" {% if current_language == 'all' %}selected="selected"{% endif %}>{{ _('Default language') }}</option>
|
||||
{% for lang_id,lang_name,country_name,english_name in language_codes | sort(attribute=1) %}
|
||||
{%- for lang_id,lang_name,country_name,english_name in language_codes | sort(attribute=1) -%}
|
||||
<option value="{{ lang_id }}" {% if lang_id == current_language %}selected="selected"{% endif %}>
|
||||
{{ lang_name }} {% if country_name %}({{ country_name }}) {% endif %}- {{ lang_id }}
|
||||
{{- lang_name }} {% if country_name %}({{ country_name }}) {% endif %}- {{ lang_id -}}
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
{%- endfor -%}
|
||||
</select>
|
||||
Loading…
Add table
Add a link
Reference in a new issue