Przeglądaj źródła

Preferences in the right order in RTL

Cqoicebordel 10 lat temu
rodzic
commit
a4ae775e0f
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2
    2
      searx/templates/oscar/macros.html

+ 2
- 2
searx/templates/oscar/macros.html Wyświetl plik

@@ -37,7 +37,7 @@
37 37
 {%- endmacro %}
38 38
 
39 39
 {% macro preferences_item_header(info, label) -%}
40
-    {% if not rtl %}
40
+    {% if rtl %}
41 41
     <div class="row form-group">
42 42
         <label class="col-sm-3 col-md-2">{{ label }}</label>
43 43
         <div class="col-sm-4 col-md-4">
@@ -49,7 +49,7 @@
49 49
 {%- endmacro %}
50 50
 
51 51
 {% macro preferences_item_footer(info, label) -%}
52
-    {% if not rtl %}
52
+    {% if rtl %}
53 53
         </div>
54 54
         <span class="col-sm-5 col-md-6 help-block">{{ info }}</span>
55 55
     </div>