vote up 4 vote down star
4

What's the best way to extend the User model (bundled with Django's authentication app) with custom fields? I would also possibly like to use the email as the username (for authentication purposes).

I've already seen a few ways to do it, but can't decide on which one is the best.

flag

5 Answers

vote up 7 vote down check

The least painful and indeed Django-recommended way of doing this is through a ForeignKey(User) property.

That said, extending django.contrib.auth.models.User also works better now -- ever since the refactoring of Django's inheritance code in the models API.

I would definitely stay away from changing the actual User class in your Django source tree and/or copying and altering the auth module.

link|flag
vote up 9 vote down

there is an official recommendation

and in djangobook

link|flag
vote up 1 vote down

The below one is another approach to extend an User. I feel it is more clear,easy,readable then above two approaches.

http://scottbarnham.com/blog/2008/08/21/extending-the-django-user-model-with-inheritance/

Using above approach:

  1. you don't need to use *user.get_profile().newattribute* to access the additional information related to the user
  2. you can just directly access additional new attributes via user.newattribute
link|flag
vote up 0 vote down

Sometimes, this is all you need : http://www.alrond.com/en/2008/may/03/monkey-patching-in-django/

link|flag
Terrible approach. – Wahnfrieden Aug 6 at 17:49
Maybe, but you want to say why? I had to do this, simply because none of the other options worked for me. – interstar Aug 9 at 14:30
Monkey patching is never a good solution. That's even worse than subclassing the User model. Just use a foreign key relationship. If you couldn't get it working, it's your problem, since this is how everyone else does it (and how Django core developers, and John Bennet, recommend it as well) – Wahnfrieden Aug 10 at 14:21
That still doesn't answer anything Wahnfrieden. – Mark Dec 7 at 19:28
vote up 0 vote down

This is how I do it.

#in models.py
from django.db.models.signals import post_save  

class UserProfile(models.Model):  
    user = models.ForeignKey(User)  
    #other fields here

    def __str__(self):  
          return "%s's profile" % self.user  

     def create_user_profile(sender, instance, created, **kwargs):  
        if created:  
           profile, created = UserProfile.objects.get_or_create(user=instance)  

post_save.connect(create_user_profile, sender=User) 

#in settings.py
AUTH_PROFILE_MODULE = 'YOURAPP.UserProfile'

This will create a userprofile each time a user is saved if it is created. You can then use

  user.get_profile().whatever

Here is some more info from the docs

http://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.