Browse Source

[fix] unused closing tag removed

asciimoo 11 years ago
parent
commit
04c408389d
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      searx/templates/categories.html

+ 1
- 1
searx/templates/categories.html View File

1
 <div id="categories">
1
 <div id="categories">
2
 {% for category in categories %}
2
 {% for category in categories %}
3
     <div class="checkbox_container">
3
     <div class="checkbox_container">
4
-        <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>
4
+        <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>
5
     </div>
5
     </div>
6
 {% endfor %}
6
 {% endfor %}
7
 </div>
7
 </div>