diff options
| author | asciimoo <asciimoo@gmail.com> | 2014-01-10 14:31:43 +0100 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2014-01-10 14:31:43 +0100 |
| commit | ba141d64ce88c2210759794eb7665a80348609ac (patch) | |
| tree | 9ab1b991ef03c4112bab8a5b99f850159fd5d36a /searx/templates/categories.html | |
| parent | 1ba2762b674fd08a67bf9460b03081892359af24 (diff) | |
| parent | 843342115633c93b2d90c4e1cec2e7cf6d4c0c6b (diff) | |
Merge branch 'master' of https://github.com/dalf/searx
Diffstat (limited to 'searx/templates/categories.html')
| -rw-r--r-- | searx/templates/categories.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/searx/templates/categories.html b/searx/templates/categories.html index 4c693f3dd..ec9c2e7d0 100644 --- a/searx/templates/categories.html +++ b/searx/templates/categories.html @@ -1,5 +1,7 @@ +<div id="categories"> {% for category in categories %} <div class="checkbox_container"> - <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}" class="cb"></label><label for="checkbox_{{ category|replace(' ', '_') }}">{{ category }}</label> + <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /></label><label for="checkbox_{{ category|replace(' ', '_') }}">{{ category }}</label> </div> {% endfor %} +</div> |