summaryrefslogtreecommitdiff
path: root/searx/templates/courgette/categories.html
diff options
context:
space:
mode:
Diffstat (limited to 'searx/templates/courgette/categories.html')
-rw-r--r--searx/templates/courgette/categories.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/searx/templates/courgette/categories.html b/searx/templates/courgette/categories.html
new file mode 100644
index 000000000..57e63c85d
--- /dev/null
+++ b/searx/templates/courgette/categories.html
@@ -0,0 +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(' ', '_') }}">{{ _(category) }}</label>
+ </div>
+{% endfor %}
+</div>