user_profile
我在一个名为这样的应用程序中有一个模型:
from django.db import models
from django.contrib.auth.models import User
class UserProfile(models.Model):
user = models.OneToOneField(User)
def __unicode__(self):
return self.user.username
在我的设置中:
AUTH_PROFILE_MODULE = 'user_profile.UserProfile'
但如果我尝试:
u = UserProfile.objects.get(pk=1)
p = u.get_profile()
我收到以下错误:
AttributeError: 'UserProfile' object has no attribute 'get_profile'
我在这里想念什么?
任何帮助将非常感激。