Sfoglia il codice sorgente

[enh] rendering engine names

asciimoo 11 anni fa
parent
commit
1291931cfc
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 5
    0
      searx/templates/index.html

+ 5
- 0
searx/templates/index.html Vedi File

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