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'
ここで何が欠けていますか?
どんな助けでも大歓迎です。