我正在嘗試使用django-allauth進行用戶註冊。我有這種形式django-allauth:重新排列表單字段(更改順序)
class UserProfileForm(forms.ModelForm):
class Meta:
model = UserProfile
fields = ('gender', 'country', 'city', 'birth_date', 'has_accepted_tos')
,並按照指示我在settings.py已設置
ACCOUNT_SIGNUP_FORM_CLASS = "userprofile.forms.UserProfileForm"
的問題是,當表單呈現我的自定義窗體問性別,國別等呈現在頂部,然後是需要用戶名,電子郵件和密碼的標準用戶字段。什麼順序如下:
- 性別
- 國家
- 城市
- birth_date
- has_accepted_tos
- 用戶名
- 電子郵件
- 密碼1
密碼2
我想在這個順序
用戶名
- 電子郵件
- 密碼1
- 密碼2
- 性別
- 國家
- 等
請創建第二個問題,另外一個問題..在這裏將其刪除。 – mariodev
好的,我刪除了第二個問題 – voger