From 74a393db8a02510018467d7cfa204a6accbe8146 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Kervella?= Date: Mon, 6 Nov 2017 12:42:43 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20:=20v=C3=A9rifie=20que=20les=20field=20ex?= =?UTF-8?q?istent=20bien=20(cas=20d'une=20recherche=20simple)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- search/templates/search/search.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/search/templates/search/search.html b/search/templates/search/search.html index 2c7fd0b6..7ae5d56d 100644 --- a/search/templates/search/search.html +++ b/search/templates/search/search.html @@ -32,10 +32,18 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% bootstrap_field search_form.q %} + {% if search_form.u %} {% include "buttons/multiple_checkbox_alt.html" with field=search_form.u %} + {% endif %} + {% if search_form.a %} {% include "buttons/multiple_checkbox_alt.html" with field=search_form.a %} + {% endif %} + {% if search_form.s %} {% bootstrap_field search_form.s %} + {% endif %} + {% if search_form.e %} {% bootstrap_field search_form.e %} + {% endif %} {% bootstrap_button "Search" button_type="submit" icon="search" %}