Tagged Questions

8
votes
3answers
2k views

Django: When extending User, better to use OneToOneField(User) or ForeignKey(User, unique=True)?

I'm finding conflicting information on whether to use OneToOneField(User) or ForeignKey(User, unique=True) when creating a UserProfile model by extending the Django User model. Is it better to use ...
0
votes
1answer
66 views

Django models: how to manage field flags

I need to create a User Profile. To ensure privacy many fields in this profile will be "hidable": every User will be able to hide these information. I can use ...
0
votes
1answer
315 views

Django - permissions and profiles

I have a couple of different profiles. I want to associate permissions with these profiles. I've done so like this: class StudentProfile(UserProfile): school = models.CharField(max_length=30) ...
0
votes
2answers
272 views

Change user email in Django without using django-profiles

In my Django application I would like the user to be able to change the email address. I've seen solution of StackOverflow pointing people to django-profiles. Unfortunately I don't want to use a full ...
0
votes
1answer
105 views

Problems updating user profiles

Working out editing profiles and ran into a little trouble! The following piece of code succesfully updates the mug_shot column in the user profile, but also erases all the other column data for that ...