在我的项目中,我有两种不同类型的用户:老师和学生,每个用户都有自己的个人资料数据。
在寻找最佳方法后,似乎前进的方法是使用多表继承:
class BaseProfile(models.Model):
user = models.OneToOneField(User)
profile = models.CharField (max_length=10, choices={'teacher', 'student'})
# other common fields
class Teacher(BaseProfile):
# teacher specific fields
class Student(BaseProfile):
# student specific fields
并在settings.py
:AUTH_PROFILE_MODULE
= myapp.BaseProfile
。
现在我想实现与django-profiles相同的功能:
当我在field profile
的{{1}}中拥有正确的值时,我很清楚如何编辑和显示部分。
问题:
现在我希望在使用信号创建用户时直接创建配置文件(并在右侧db:BaseProfile
或Teacher
)。
当用户通过注册表单注册网站时,字段Student
应包含值“student”。当管理员通过管理界面创建新用户时,该值应为“teacher”。
任何人都知道如何才能做到这一点?可能我需要编写一个自定义信号,如下所示,并从用户模型发送,但还没有找到一个可行的解决方案:
profile
当然也欢迎其他更好的方法!
谢谢!
答案 0 :(得分:0)
在我看来,这不是一个好方法。
我建议使用1个统一的配置文件,其中包含一个选项: user_type = models.CharField(choices = [your_choices],max_length = 4)
然后在模型中,您将创建两个表单 - 1个用于教师,1个用于学生。
class ProfileFOrm(forms.ModelForm):
def __init__(self, *args, **kwargs):
super(BaseProfileForm, self).__init__(*args, **kwargs)
for name in self.fields:
self.fields[name].required = True
class TeacherProfile(ProfileForm):
class Meta:
model = Profile
fields = ('your_fields')
class StudentProfile(ProfileForm):
class Meta:
model = Profile
fields = ('school')
这只是我的想法:)
被修改
个人资料版:
图。
def profile(request):
p = get_objects_or_404(ProfileModel, user=request.user)
return TemplateResponse(request, 'template.html', {'profile': p})
在模型中,我们需要一个功能来检查用户是学生还是教师,所以:
class Profile(models.Model):
... your fields here...
def get_student(self):
return self.user_type == 1
在模板中:
{% if profile.get_student%}
>>>>get all data for students ex: <<<<
{{profile.name}}
{% endif %}
{% if profile.get_teacher %}
....