소스 검색

[fix] search category checkbox whitespaces

asciimoo 11 년 전
부모
커밋
88b5169f8d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      searx/templates/search.html

+ 1
- 1
searx/templates/search.html 파일 보기

@@ -6,7 +6,7 @@
6 6
     <div>
7 7
     {% for category in categories %}
8 8
         <div class="checkbox_container">
9
-            <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category|replace(' ', '_') }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category }}" class="cb"></label><label for="checkbox_{{ category }}">{{ category }}</label>
9
+            <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}" class="cb"></label><label for="checkbox_{{ category|replace(' ', '_') }}">{{ category }}</label>
10 10
         </div>
11 11
     {% endfor %}
12 12
     </div>