From 57021ad573ec95fd159cc4147649827e741d1055 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Kervella?= Date: Tue, 7 Nov 2017 22:16:59 +0000 Subject: [PATCH] Texte d'aide sur l'utilisation de termes de recherche exacts --- search/forms.py | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/search/forms.py b/search/forms.py index 90f7407f..b0668ef9 100644 --- a/search/forms.py +++ b/search/forms.py @@ -45,21 +45,32 @@ CHOICES_AFF = ( ) -def initial_choices(c): +def initial_choices(choice_set): """Return the choices that should be activated by default for a given set of choices""" - return [i[0] for i in c] + return [i[0] for i in choice_set] class SearchForm(Form): """The form for a simple search""" - q = forms.CharField(label='Search', max_length=100) + q = forms.CharField( + label='Recherche', + help_text=( + 'Utilisez « » et «,» pour spécifier différents mots, «"query"» ' + 'pour une recherche exacte et «\\» pour échapper un caractère.' + ), + max_length=100 + ) class SearchFormPlus(Form): """The form for an advanced search (with filters)""" q = forms.CharField( - label='Search', + label='Recherche', + help_text=( + 'Utilisez « » et «,» pour spécifier différents mots, «"query"» ' + 'pour une recherche exacte et «\\» pour échapper un caractère.' + ), max_length=100, required=False )