Sfoglia il codice sorgente

[fix] unused closing tag removed

asciimoo 11 anni fa
parent
commit
04c408389d
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      searx/templates/categories.html

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

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