logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: 359dfc5ebb011f8c241fbfa16ec34fcbec844064
parent 88aee611f7c016d1f05202af9d9f647c8e5d26e2
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Tue, 10 Mar 2015 23:03:06 +0100

[mod] checkbox macro

Diffstat:

Msearx/templates/oscar/macros.html8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/searx/templates/oscar/macros.html b/searx/templates/oscar/macros.html @@ -59,3 +59,11 @@ </div> {% endif %} {%- endmacro %} + +{% macro checkbox_toggle(id, blocked) -%} + <div class="checkbox"> + <input class="hidden" type="checkbox" id="{{ id }}" name="{{ id }}"{% if blocked %} checked="checked"{% endif %} /> + <label class="btn btn-success label_hide_if_checked" for="{{ id }}">{{ _('Block') }}</label> + <label class="btn btn-danger label_hide_if_not_checked" for="{{ id }}">{{ _('Allow') }}</label> + </div> +{%- endmacro %}