django - Set field as the second field of my form -
i use django-allauth. how can set item_name
form field second field of form?(currently first field after rendering in html)
class customsignupform(forms.form): item_name = forms.charfield(...) def signup(self, request, user): pass account_signup_form_class = 'app.forms.customsignupform'
Comments
Post a Comment