我正在使用django 1.8为我的应用程序,我正在使用postgresql.I已经成功创建了一个超级用户,并且可以在我的settings.py文件中配置所有postgresql设置后登录到我的管理面板。但之后我刚刚决定扩展我的django内置用户模型,这就是为什么我创建了一个新的应用程序,即身份验证并编写了这个模型
from django.db import models
from django.contrib.auth.models import AbstractBaseUser
from django.contrib.auth.models import BaseUserManager
class AccountManager(BaseUserManager):
def create_user(self, email, password=None, **kwargs):
if not email:
raise ValueError('Users must have a valid email address.')
if not kwargs.get('username'):
raise ValueError('Users must have a valid username.')
account = self.model(
email=self.normalize_email(email), username=kwargs.get('username')
)
account.set_password(password)
account.save()
return account
def create_superuser(self, email, password, **kwargs):
account = self.create_user(email, password, **kwargs)
account.is_admin = True
account.save()
return account
class Account(AbstractBaseUser):
email = models.EmailField(unique=True)
username = models.CharField(max_length=40, unique=True)
first_name = models.CharField(max_length=40, blank=True)
last_name = models.CharField(max_length=40, blank=True)
tagline = models.CharField(max_length=140, blank=True)
is_admin = models.BooleanField(default=False)
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)
objects = AccountManager()
USERNAME_FIELD = 'email'
REQUIRED_FIELDS = ['username']
def __unicode__(self):
return self.email
def get_full_name(self):
return ' '.join([self.first_name, self.last_name])
def get_short_name(self):
return self.first_name
然后我在settings.py中添加了一个新行,即
后迁移了它AUTH_USER_MODEL = 'authentication.Account'
但之后我无法登录我的管理员。
为了解决这个问题,我为我新创建的帐户模型创建了一个超级用户。但问题还没有解决。
为了测试什么是错误的,我已经注释掉 AUTH_USER_MODEL =' authentication.Account' 就像这样
#AUTH_USER_MODEL = 'authentication.Account'
然后它允许我使用旧的用户名和密码登录我的管理员,当我配置了postgresql并创建超级用户时,我实际上已经设置了该用户名和密码。
修改 在为我的帐户模型创建超级用户后,我正在尝试登录我的管理员,将新创建的电子邮件地址作为用户名和新密码,但现在我面临以下错误
AttributeError at /admin/login/
'Account' object has no attribute 'is_staff'
答案 0 :(得分:0)
要使用户模型适合与django admin一起使用,您需要扩展AbstractUser
- 一个抽象基类,实现具有管理员兼容权限的全功能用户模型。
https://github.com/django/django/blob/master/django/contrib/auth/models.py#L293
或向模型添加其他字段。至少您需要is_active
和is_staff
答案 1 :(得分:0)
我已经解决了这个问题,我在帐户模型中添加了以下方法
@property
def is_staff(self):
return self.is_admin
def has_perm(self, perm, obj=None):
return self.is_admin
def has_module_perms(self, app_label):
return self.is_admin
现在我可以成功登录我的管理员,而不会出现像
这样的错误'Account obejects has no attribute like stuff'
或
'Account obejects has no attribute like has_module_perms'