Browse Source

[mod] checkbox label position

asciimoo 11 years ago
parent
commit
567a44fcad
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      searx/templates/search.html

+ 2
- 2
searx/templates/search.html View File

@@ -3,8 +3,8 @@
3 3
     <input type="submit" value="search" />
4 4
     <p>
5 5
     {% for category in categories %}
6
-        {{ category }}: <input type="checkbox" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} />
6
+        <input type="checkbox" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} />{{ category }}
7 7
     {% endfor %}
8 8
     </p>
9
-    <p>remember categories:<input type="checkbox" name="save" checked="checked" /></p>
9
+    <p><input type="checkbox" name="save" checked="checked" />remember categories</p>
10 10
 </form>