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