使用Django allauth创建自定义字段
我正在尝试在Django的allauth注册表单中添加自定义字段,但一直没有成功。我创建了以下的表单和模型:
models.py
from django.db import models
from django.contrib.auth.models import User
# Create your models here.
class UserProfile(models.Model):
user = models.OneToOneField(User, related_name='profile', unique=True)
# The additional attributes we wish to include.
website = models.URLField(blank=True)
picture = models.ImageField(upload_to='profile_images', blank=True)
def __unicode__(self):
return self.user.username
forms.py
from django.contrib.auth import get_user_model
from django import forms
from .models import UserProfile
class SignupForm(forms.ModelForm):
class Meta:
model = get_user_model()
fields = ('username', 'password', 'email', 'website', 'picture')
def save(self, user):
profile.save()
user.save()
settings.py
AUTH_USER_MODEL = 'user_app.UserProfile'
ACCOUNT_SIGNUP_FORM_CLASS = 'user_app.forms.SignupForm'
我遇到了以下错误: AttributeError: type object 'UserProfile' has no attribute 'REQUIRED_FIELDS'
- 这样扩展基类是正确的吗?
- 在个人资料页面,我该如何加载扩展后的类,而不是用户类,这样我就可以显示当前登录的用户名?
1 个回答
5
你需要在你的模型中定义一个叫做 REQUIRED_FIELDS
的元组:
class UserProfile(models.Model):
REQUIRED_FIELDS = ('user',)
user = models.OneToOneField(User, related_name='profile', unique=True)