Bläddra i källkod

[enh] rendering engine names

asciimoo 11 år sedan
förälder
incheckning
1291931cfc
1 ändrade filer med 5 tillägg och 0 borttagningar
  1. 5
    0
      searx/templates/index.html

+ 5
- 0
searx/templates/index.html Visa fil

@@ -5,6 +5,11 @@
5 5
     <form method="post" action="">
6 6
         <input type="text" name="q" tabindex="1" />
7 7
         <input type="submit" value="search" />
8
+        <p>
9
+        {% for engine in engines %}
10
+            {{ engine }}: <input type="checkbox" name="engine_{{ engine }}" checked="checked"/>
11
+        {% endfor %}
12
+        </p>
8 13
     </form>
9 14
 </div>
10 15
 {% endblock %}