summaryrefslogtreecommitdiff
path: root/searx/templates/courgette/categories.html
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2015-01-16 12:24:38 +0100
committerAdam Tauber <asciimoo@gmail.com>2015-01-16 12:24:38 +0100
commit3fd562ccd7af1fa7ea057e6f437910a29d14b9a9 (patch)
tree2fbcfb0d6b42dc40a969b91cad731f3f31251a6f /searx/templates/courgette/categories.html
parent81a77f8a1753c0f2f4e3ffb3aa421e0645a3f6e6 (diff)
parent2fc1de54da6c81ab99240b2f69319dfc62d6dd2e (diff)
Merge pull request #176 from Cqoicebordel/courgette-UXUI
Courgette theme - UIUX
Diffstat (limited to 'searx/templates/courgette/categories.html')
-rw-r--r--searx/templates/courgette/categories.html12
1 files changed, 7 insertions, 5 deletions
diff --git a/searx/templates/courgette/categories.html b/searx/templates/courgette/categories.html
index 57e63c85d..b8d6a75e0 100644
--- a/searx/templates/courgette/categories.html
+++ b/searx/templates/courgette/categories.html
@@ -1,7 +1,9 @@
<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(' ', '_') }}">{{ _(category) }}</label>
+ <div id="categories_container">
+ {% 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(' ', '_') }}">{{ _(category) }}</label>
+ </div>
+ {% endfor %}
</div>
-{% endfor %}
-</div>
+</div> \ No newline at end of file