The version of vichan running on lainchan.org
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

25 lignes
1.2KB

  1. <div class="ban">
  2. <h2>{% trans %}Search{% endtrans %}</h2>
  3. <form style="display:inline" action="" method="get">
  4. <p>
  5. <label style="display:inline" for="search">{% trans %}Phrase:{% endtrans %}</label>
  6. <input id="search" name="search" type="text" size="40" value="{{ search }}">
  7. <select name="board">
  8. <option value="none">{% trans %}Select board{% endtrans %}&hellip;</option>
  9. {% for b2 in boards %}
  10. {% if b2 == b %}
  11. <option value="{{ b2 }}" selected>/{{ b2 }}/</option>
  12. {% else %}
  13. <option value="{{ b2 }}">/{{ b2 }}/</option>
  14. {% endif %}
  15. {% endfor %}
  16. </select>
  17. <input type="submit" value="{% trans %}Search{% endtrans %}" />
  18. </p>
  19. </form>
  20. <p style="font-size:8pt;margin:5px">
  21. {% trans %}Search is case-insensitive and based on keywords. To match exact phrases, use "quotes". Use an asterisk (*) for wildcard.</p><p style="font-size:8pt;margin:5px">You may apply the following filters to your searches: <strong>id</strong>, <strong>thread</strong>, <strong>subject</strong>, and <strong>name</strong>. To apply a filter, simply add to your query, for example, <em>name:Anonymous</em> or <em>subject:"Some Thread"</em>. Wildcards cannot be used in filters.{% endtrans %}
  22. </p>
  23. </div>