Browse Source

[mod] Capitalize theme names/styles in theme.html view file

Jay 1 year ago
parent
commit
b4de72a96f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      searx/templates/simple/preferences/theme.html

+ 2 - 2
searx/templates/simple/preferences/theme.html

@@ -5,7 +5,7 @@
       {%- for name in themes -%}
         <option value="{{ name }}"
                 {%- if name == theme %} selected="selected"{%- endif -%}>
-                {{- name -}}
+                {{- name | capitalize -}}
         </option>
       {%- endfor -%}
     </select>{{- '' -}}
@@ -22,7 +22,7 @@
       {%- for name in ['auto', 'light', 'dark'] -%}
         <option value="{{ name }}"
                 {%- if name == preferences.get_value('simple_style') %} selected="selected" {%- endif -%}>
-                {{- _(name) -}}
+                {{- _(name) | capitalize -}}
         </option>
       {%- endfor -%}
     </select>{{- '' -}}