Good Work !!
2013/12/10 Olga Burdonova
> I tested it with django 1.6 and 1.5
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...
I tested it with django 1.6 and 1.5
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email
Solved by overwriting some methods but I still thinking about better
solution.
class OrderWizard(SessionWizardView):
template_name = "order/wizard.html"
def get_form_key(self, step):
return "wizard_" + self.prefix + str(step)
def process_step(self, form):
self.reque
More information from pdb...
>
/usr/local/lib/python2.7/dist-packages/django/contrib/formtools/wizard/views.py(60)current()
-> return self._wizard.storage.current_step or self.first
(Pdb) self._wizard.storage.current_step
u'0'
(Pdb) self.first
u'0'
(Pdb) n
--Return--
>
/usr/local/lib/python2.7/d
I have a problem with wizard, no data from previous forms is stored in
session backend ...
What's exactly the problem I do not understand, but as a function called
"def set_step_data(data): self.data[self.step_data_key][step] =
cleaned_data"
nothing is stored...
then via
5 matches
Mail list logo