commit: a4ae775e0f170a483888f2f2deeaf841fe0f1a48
parent 9520542fa5c9f43c09d53b8673d4e25b6e561be8
Author: Cqoicebordel <Cqoicebordel@users.noreply.github.com>
Date: Wed, 11 Feb 2015 20:08:04 +0100
Preferences in the right order in RTL
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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>