diff options
| author | asciimoo <asciimoo@gmail.com> | 2014-01-10 15:18:05 +0100 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2014-01-10 15:18:05 +0100 |
| commit | 04c408389d3d1a97a6a4b59502490372d67357cf (patch) | |
| tree | c6826fe8e32ae492bb75cbdfa2d9a7320912d720 | |
| parent | 763a7d68fc08bb1297e7256bd375b0eeb1cd411c (diff) | |
[fix] unused closing tag removed
| -rw-r--r-- | searx/templates/categories.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/categories.html b/searx/templates/categories.html index ec9c2e7d0..b1fd3d1fc 100644 --- a/searx/templates/categories.html +++ b/searx/templates/categories.html @@ -1,7 +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><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 for="checkbox_{{ category|replace(' ', '_') }}">{{ category }}</label> </div> {% endfor %} </div> |