#19179: No mention of Multiiple Inheritance required for NamedUrlWizardView
-------------------------+-------------------------------------------------
     Reporter:  tom@…    |      Owner:  nobody
         Type:  Bug      |     Status:  new
    Component:           |    Version:  1.4
  Documentation          |   Keywords:  SessionWizardView,
     Severity:  Normal   |  NamedUrlWizardView
 Triage Stage:           |  Has patch:  0
  Unreviewed             |      UI/UX:  0
Easy pickings:  0        |
-------------------------+-------------------------------------------------
 When creating a formtools.wizard.views.NamedUrlWizardView you must
 subclass both SessionWizardView and NamedUrlWizardView. This is ran me for
 a bit of a loop today, and their is no mention of this in the
 documentation.

 Example of a view:
 {{{
 class SubClassOfFormWizard(SessionWizardView, NamedUrlWizardView):
     def done(self, form_list, **kwargs):
     return render_to_response('finished.html', {
         'form_data': [form.cleaned_data for form in form_list],
     })
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/19179>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to