diff options
Diffstat (limited to 'ishtar_common')
-rw-r--r-- | ishtar_common/templates/widgets/search_input.html | 2 | ||||
-rw-r--r-- | ishtar_common/widgets.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/ishtar_common/templates/widgets/search_input.html b/ishtar_common/templates/widgets/search_input.html index 9cbae011e..2f8cba06f 100644 --- a/ishtar_common/templates/widgets/search_input.html +++ b/ishtar_common/templates/widgets/search_input.html @@ -80,7 +80,7 @@ <p>{% blocktrans %}For searches such as larger, smaller (for numeric fields), before, after (for date fields), add the criterion from the form, then change the "=" sign to "=>" or "=<", depending on the desired result.{% endblocktrans %}</p> <p><em>{% blocktrans %}Example: the search 'year=>"2019"' will return all items from 2019 and onwards.{% endblocktrans %}</em></p> - <p class="text-center"><em><a href="https://ishtar.readthedocs.io/fr/{{widget.ISHTAR_DOCUMENT_VERSION}}/interface-utilisateur.html#recherche-textuelle-et-par-criteres" target="_blank">{% trans "Full documentation for searches." %}</a></em></p> + <p class="text-center"><em><a href="https://ishtar.readthedocs.io/fr/{{widget.ISHTAR_DOCUMENT_VERSION}}/interface-utilisateur.html#barre-de-recherche" target="_blank">{% trans "Full documentation for searches." %}</a></em></p> </div> </div> diff --git a/ishtar_common/widgets.py b/ishtar_common/widgets.py index 403b06258..cb112b22b 100644 --- a/ishtar_common/widgets.py +++ b/ishtar_common/widgets.py @@ -630,7 +630,6 @@ class SearchWidget(forms.TextInput): context["model"] = self.model context["pin_model"] = self.pin_model context["widget"]["ISHTAR_DOCUMENT_VERSION"] = settings.ISHTAR_DOCUMENT_VERSION - print(context) return context |