0
장고 양식 마법사에 문제가 있습니다.Django 마법사를 폼과 클래스 속성으로 사용하는 방법은 무엇입니까?
documentation is around the as_view
method의 특정 부분, 그것은 당신과 같이, 클래스 속성으로 형식 목록에 전달할 수 있습니다 말한다 :
class ContactWizard(WizardView):
form_list = [ContactForm1, ContactForm2]
를하지만에 그에게 전화하는 방법의 예를 제공하지 않습니다 나는이 시도했다
AssertionError at /create/thing
at least one form is needed
:
url(r'^create/thing$', views.ThingWizard.as_view),
# TypeError
object of type 'WSGIRequest' has no len()
url(r'^create/thing$', views.ThingWizard.as_view()),
# AssertionError
at least one form is needed
url(r'^create/thing$', views.ThingWizard),
# TypeError __init__() takes exactly 1 argument
url(r'^create/thing$', views.ThingWizard()),
# AttributeError at /create/thing
'ThingWizard' object has no attribute 'rindex'
, 그래서 내가 해봤 모든 반복이 오류를주는 유지
팁이 있습니까?