From 746f36e9f25123725ede15be69ba33f49a9e4bb4 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Mon, 7 Jul 2025 22:22:49 +0200 Subject: [PATCH] search_form.html: update filters help --- templates/search_form.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/search_form.html b/templates/search_form.html index e88f9ffb..7d2b42c2 100644 --- a/templates/search_form.html +++ b/templates/search_form.html @@ -19,6 +19,10 @@

- {% trans %}Search is case-insensitive and based on keywords. To match exact phrases, use "quotes". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: id, thread, subject, and name. To apply a filter, simply add to your query, for example, name:Anonymous or subject:"Some Thread". Wildcards cannot be used in filters.{% endtrans %} + {% if flags_enabled %} + {% trans %}Search is case-insensitive and based on keywords. To match exact phrases, use "quotes". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: id, thread, subject, name, flag and board (as an alternative syntax). To apply a filter, simply add to your query, for example, name:Anonymous or subject:"Some Thread". The id, thread and board filters do not support wildcards.{% endtrans %} + {% else %} + {% trans %}Search is case-insensitive and based on keywords. To match exact phrases, use "quotes". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: id, thread, subject, name and board (as an alternative syntax). To apply a filter, simply add to your query, for example, name:Anonymous or subject:"Some Thread". The id, thread and board filters do not support wildcards.{% endtrans %} + {% endif %}