search.html 353B

123456789
  1. <form method="post" action="">
  2. <input type="text" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
  3. <input type="submit" value="search" />
  4. <p>
  5. {% for engine in engines %}
  6. {{ engine }}: <input type="checkbox" name="engine_{{ engine }}" checked="checked"/>
  7. {% endfor %}
  8. </p>
  9. </form>