diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-04-29 11:07:55 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-04-29 11:07:55 +0200 |
commit | 962f02573fb8670b248c071450cfe766a2fe240f (patch) | |
tree | 0cc9e8540fd006ee6a6042b929d56b8185a1e9ea /ishtar_common/widgets.py | |
parent | 949df48b4e5ad27d1bdb74515831683cc02a9c87 (diff) | |
download | Ishtar-962f02573fb8670b248c071450cfe766a2fe240f.tar.bz2 Ishtar-962f02573fb8670b248c071450cfe766a2fe240f.zip |
🐛 fix quick add of organization and persons on some wizards forms (refs #6280, refs #6279)
Diffstat (limited to 'ishtar_common/widgets.py')
-rw-r--r-- | ishtar_common/widgets.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/widgets.py b/ishtar_common/widgets.py index 765ed7b77..d0ade6fea 100644 --- a/ishtar_common/widgets.py +++ b/ishtar_common/widgets.py @@ -124,6 +124,7 @@ class SelectReadonlyField(forms.ChoiceField): class Select2Media: @property def media(self): + # TODO: to remove? put in on base.html css = {"all": ("select2/css/select2.css",)} js = ["select2/js/select2.full.min.js"] for lang_code, lang in settings.LANGUAGES: |