diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-11-03 15:53:26 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-11-03 15:53:26 +0100 |
| commit | 2629efa611018da0fac8304391488381142ced24 (patch) | |
| tree | a79fdbae63264fe526ef540ef4fb5bf28317ddf1 /ishtar_common/wizards.py | |
| parent | 50e64a901062c140b3f38a137823c46e940c180f (diff) | |
| parent | 229a5559e9933ea76020963ca3778906d39279d4 (diff) | |
| download | Ishtar-2629efa611018da0fac8304391488381142ced24.tar.bz2 Ishtar-2629efa611018da0fac8304391488381142ced24.zip | |
Merge branch 'v0.9' into wheezy
Diffstat (limited to 'ishtar_common/wizards.py')
| -rw-r--r-- | ishtar_common/wizards.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index c8467ca61..c065459f6 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -553,6 +553,7 @@ class Wizard(NamedUrlWizardView): getattr(obj, k).add(adds[k]) # necessary to manage interaction between models like # material_index management for baseitems + obj._cached_label_checked = False obj.save() m2m_items = {} # clear @@ -618,6 +619,7 @@ class Wizard(NamedUrlWizardView): related_model.add(value) # necessary to manage interaction between models like # material_index management for baseitems + obj._cached_label_checked = False obj.save() # make the new object a default if self.current_obj_slug: @@ -715,7 +717,7 @@ class Wizard(NamedUrlWizardView): # and self.form_initialized: # for k in init[0]: # data[step + '-' + unicode(total_field) + '-' + k] = \ - # init[0][k] + # init[0][k] data = data or None form = super(Wizard, self).get_form(step, data, files) |
