diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-11-30 12:10:35 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:20:59 +0100 |
commit | badf5e049d6a194bb7d562708c7fe182bf2b69ed (patch) | |
tree | f571ef9e56ad8237ea0e64867dc7660fd5c45b9c | |
parent | ac40e582f36bfc85baefcf0a1d9da4bd3390d313 (diff) | |
download | Ishtar-badf5e049d6a194bb7d562708c7fe182bf2b69ed.tar.bz2 Ishtar-badf5e049d6a194bb7d562708c7fe182bf2b69ed.zip |
Fix wizard formset
-rw-r--r-- | ishtar_common/wizards.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index 34ed05e13..80054ca0c 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -121,6 +121,7 @@ class IshtarWizard(NamedUrlWizardView): ) if ( self.model + and hasattr(form, "field") and "pk" in form.fields and self.request.session.get("EXTERNAL_SOURCES", {}) ): |