Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
5
votes
2answers
316 views

What's the best way to have different profiles for different kinds of users in django?

In my application I have students, professors and staff. Staff members do not need a profile but professors and students each need a different profile. I'd rather not implement it all myself ...
3
votes
1answer
964 views
1
vote
1answer
49 views

How the datas are connected to the specific user ID?

I'm new to Django and python. I've done login forms but I need to know. How can I connect the contents of the page with the user. For example: It's a Q&A site. When you logged in, It shows ...
1
vote
2answers
550 views

Django IntegrityError in updating User.username

IntegrityError at /profiles/edit column username is not unique Im using django-profiles and I had this error when I try to update my username with an existing username of another user account. My ...
1
vote
1answer
138 views

How can I add user profile support to a google app engine app?

I have a Google App Engine app based on django / django_appengine that I wish to modify by adding user profile support to it, because the basic user model is a bit simplistic for my situation. What's ...
1
vote
3answers
486 views

Creating Title / Slug based on PK ID

What would be the generic way to create record title and slub based on the ID? I am working with django-photologue here. I want to save a record with title and slug based on the PK. The generic ...
1
vote
1answer
865 views

File upload with django-profiles

I'm using the django-contrib package django-profiles, and everything is working great - my only issue is that I would like the form to upload a file (for an avatar), unfortunately - the form does not ...
0
votes
1answer
36 views

django-profile passing variables to template

Django newbie at work and I could use some pointers. I'm using django-profile and have been working on my profile page which is handled by the views.profile_detail. The problem I am facing is I am ...
0
votes
1answer
34 views

Django-profiles, user profile with Geo field?

I am working with django-profiles for the first time, so I might be missing something basic. I'd like to create a UserProfile model that includes geographic fields. Specifically something along these ...
0
votes
1answer
124 views

Django: Changing User Profile by forms

I am using UserProfile to save some fields that I created. Its working fine. But I would like to create a new view to let user change (update) theses fields values. But, theses values arent being ...
0
votes
1answer
116 views

Accessing SubClassed User Profile Module in Django 1.3

I am trying to create two user types in django 1.3. I am subclassing the AUTH_PROFILE_MODULE with the following models.py: class Member(models.Model): ROLE_CHOICES = ( (0, 'Guide'), ...
0
votes
1answer
164 views

django-registration create_user() unexpected keyword

I am trying to create a custom profile to add additional fields to django-registration. Here is the code I have so far -- in models.py from django.db import models from django.contrib.auth.models ...
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
0answers
91 views

Shared authentication and profiles in Django

We're going to build some "federated" apps. Let's call them app1.example.com and app2.example.com. I need to do two things: single sign on share some data between the two profiles. For example i ...
0
votes
1answer
159 views

Django retrieve all comments for a user

I'm using django-profiles and django.contrib.comments and I am trying to display all comments for a particular user in their profile. This is using the default profile_detail view from ...
0
votes
1answer
590 views

django-registration creating blank django-profiles using signals

I have gone through the solution here and Shacker's django-profiles: The Missing Manual and subsequent signals solution by Dmitko and answers here and many places. Here are the details: ...
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
1answer
117 views

passing variable to django custom template tag

Im using django-profiles. In my profile_detail template I know that I will receive a profile variable. I want to make a custom tag that gets the content per user via user id. Like this: {% ...
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 ...