class CustomerRegistrationForm(forms.Form):
def __init__(self, *args, **kwargs):
self.helper = FormHelper()
self.helper.form_action = 'customer_register'
self.helper.layout = Layout(
HTML("""<h3>Create new customers account</h3>"""),
Row(Field('first_name',),),
Field('last_name',),
Field('gender',),
Row( Field('gender'),),
)
このクラスの結果は、フィールドがラベルの下にあるようなものですが、ラベルとフィールドが同じであるhttps://github.com/maraujop/django-crispy-formsの例のようなものが必要ですライン。
私は何を取りこぼしたか?