summaryrefslogtreecommitdiff
path: root/searx/templates/oscar/macros.html
diff options
context:
space:
mode:
authorCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-02-11 20:08:04 +0100
committerCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-02-11 20:08:04 +0100
commita4ae775e0f170a483888f2f2deeaf841fe0f1a48 (patch)
treeb2b41de1d40fbec70b3be0ba2fcf76b78db3deba /searx/templates/oscar/macros.html
parent9520542fa5c9f43c09d53b8673d4e25b6e561be8 (diff)
downloadsearxng-a4ae775e0f170a483888f2f2deeaf841fe0f1a48.tar.gz
searxng-a4ae775e0f170a483888f2f2deeaf841fe0f1a48.zip
Preferences in the right order in RTL
Diffstat (limited to 'searx/templates/oscar/macros.html')
-rw-r--r--searx/templates/oscar/macros.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/oscar/macros.html b/searx/templates/oscar/macros.html
index f2222c610..7d72b7092 100644
--- a/searx/templates/oscar/macros.html
+++ b/searx/templates/oscar/macros.html
@@ -37,7 +37,7 @@
{%- endmacro %}
{% macro preferences_item_header(info, label) -%}
- {% if not rtl %}
+ {% if rtl %}
<div class="row form-group">
<label class="col-sm-3 col-md-2">{{ label }}</label>
<div class="col-sm-4 col-md-4">
@@ -49,7 +49,7 @@
{%- endmacro %}
{% macro preferences_item_footer(info, label) -%}
- {% if not rtl %}
+ {% if rtl %}
</div>
<span class="col-sm-5 col-md-6 help-block">{{ info }}</span>
</div>