From e7257529560713e1b5bd36fd94279da91ec34979 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 20 Apr 2026 16:03:16 +0200 Subject: ✨ generic search: add editors - find search: add many fields MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ishtar_common/forms.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ishtar_common/forms.py') diff --git a/ishtar_common/forms.py b/ishtar_common/forms.py index 87d498596..138a15901 100644 --- a/ishtar_common/forms.py +++ b/ishtar_common/forms.py @@ -1091,6 +1091,10 @@ class TableSelect(IshtarForm): class HistorySelect(CustomForm, TableSelect): + editors = forms.IntegerField( + label=_("Editor"), required=False, + widget=widgets.JQueryAutoComplete( + reverse_lazy('autocomplete-author'))) history_creator = forms.IntegerField( label=_("Created by"), widget=widgets.JQueryAutoComplete( @@ -1119,6 +1123,7 @@ class HistorySelect(CustomForm, TableSelect): _explicit_ordering = True CURRENT_FIELDS = [ + "editors", "history_creator", "created", "history_modifier", -- cgit v1.2.3