Explorar el Código

[mod] checkbox label position

asciimoo hace 11 años
padre
commit
567a44fcad
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      searx/templates/search.html

+ 2
- 2
searx/templates/search.html Ver fichero

@@ -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>