Django多级用户处理

时间:2015-02-06 05:04:20

标签: django-models django-admin django-users

使用django和postgresql设计多级用户登录系统的最佳方法是什么?用户详细信息是主管(管理员),学生,教师,员工等。这些不同类型的用户详细信息具有不同的字段,我们无法更改该字段。我们如何通过组合所有这些类型的用户来设计用户模型。

class Heads(models.Model):
    gid     = models.IntegerField(primary_key=True) 
    name    = models.CharField(max_length=50)
    emp_code= models.CharField(max_length=50)
    school  = models.ForeignKey(SchoolDetails)
    prdFrom = models.DateField()
    contact_no=models.CharField(max_length=50) 
    email_id=models.CharField(max_length=50) 
    designation=models.CharField(max_length=50)
    address =models.TextField() 
    def __unicode__(self):
        return unicode(self.name)
    class Meta:
        db_table = u'heads'
        verbose_name = "heads"  

class Student(models.Model):
    gid     = models.IntegerField(primary_key=True) 
    name    = models.CharField(max_length=50)
    stud_code= models.CharField(max_length=50)
    school  = models.ForeignKey(SchoolDetails)
    std = models.IntegerField()
    division=models.CharField()
    parents_email_id=models.CharField(max_length=50) 
    parents_contact_no=models.CharField(max_length=50) 
    addess  =models.TextField() 
    def __unicode__(self):
        return unicode(self.name)
    class Meta:
        db_table = u'students'
        verbose_name = "students"       

class Teacher(models.Model):
    gid     = models.IntegerField(primary_key=True) 
    name    = models.CharField(max_length=50)
    emp_code= models.CharField(max_length=50)
    school  = models.ForeignKey(SchoolDetails) 
    contact_no=models.CharField(max_length=50) 
    email_id=models.CharField(max_length=50) 
    address =models.TextField() 
    is_lead= models.CharField()
    def __unicode__(self):
        return unicode(self.name)
    class Meta:
        db_table = u'teacher'
        verbose_name = "teacher"        

class Staff(models.Model):
    gid     = models.IntegerField(primary_key=True) 
    name    = models.CharField(max_length=50)
    emp_code= models.CharField(max_length=50)
    school  = models.ForeignKey(SchoolDetails) 
    contact_no=models.CharField(max_length=50) 
    email_id=models.CharField(max_length=50) 
    address =models.TextField() 
    designation= models.CharField()
    def __unicode__(self):
        return unicode(self.name)
    class Meta:
        db_table = u'staff'
        verbose_name = "staff"              

请给出答案。

谢谢。

1 个答案:

答案 0 :(得分:0)

您可以extend the User model使用所有类似个人资料的类,这样就可以了:

class Heads(models.Model): #<-- by convention you should use singular 'Head'
    user = models.OneToOneField(User)
    <other Head-specific fields not included in User>

因此User - 类型始终相同,但附加的配置文件不同。如果您在示例中使用OneToOneField,那么在向后关系中,您只需要检查哪一个不是None,而是从User - 实例到正确的Profile - 实例。

当然,根据用户所属的个人资料,您可能仍然会有不同的用户创建形式或方法。

如果您对Django的默认用户模型信息不满意,您还可以更进一步substitute the User model来保存所有配置文件通用的所有信息。