diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-14 09:03:56 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-14 09:03:56 +0200 |
commit | 73ba1638f580f6968126f4939a1f4495710915cb (patch) | |
tree | bf7480e89c9d0dea0932faf346762e3db7e5b7f9 /ishtar_common/forms.py | |
parent | 63ffae36db57b1f2a0df50e43c04a0676df79bc9 (diff) | |
download | Ishtar-73ba1638f580f6968126f4939a1f4495710915cb.tar.bz2 Ishtar-73ba1638f580f6968126f4939a1f4495710915cb.zip |
Context records: multiple deletion - redirections after wizard changes
Diffstat (limited to 'ishtar_common/forms.py')
-rw-r--r-- | ishtar_common/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/forms.py b/ishtar_common/forms.py index 04cd5a327..5be5deafe 100644 --- a/ishtar_common/forms.py +++ b/ishtar_common/forms.py @@ -395,7 +395,7 @@ class MultiSearchForm(CustomFormSearch): raise NotImplementedError("A \"pk\" field must be defined") if self.pk_key not in self.associated_models: raise NotImplementedError("\"{}\" must be defined in " - "associated_models") + "associated_models".format(self.pk_key)) self.fields['pk'].required = True self.fields[self.pk_key] = self.fields.pop('pk') |