Django-profiles is a module that allows you to add additional fields that extend the "out of the box" User Profile provided by Django.
0
votes
3answers
71 views
Django admin: How to user edit the profile?
I have try to implement the code for edit the Django admin panel. it run without any errors. but it did not updates the relevant data field in database. Here is my code for update the database table.
...
1
vote
2answers
94 views
Temporarily upload profile image in Django during registration?
In a Django application, during registration, I want the user to be able to see the profile image he/she selects, rather than just see a path as done purely using django forms (for an example of what ...
0
votes
1answer
89 views
Overriding Django profiles' profile_detail view
I installed django profiles/registration and everything seems to be fine. When a user registers their profile is created also. Now what i want to do is query another Model which is Company based on ...
0
votes
1answer
163 views
Django user profile query
I have been struggling to see what is wrong with this code for couple hours now. The project i m working on calls for users to register to the sites (taken care of by Django registration plugin.) Once ...
0
votes
1answer
369 views
'ImageFieldFile' object has no attribute 'content_type' only after picture has already been uploaded then isn't either changed or removed
I'm working on a project that uses both django registration and django profiles. I have a form that allows users edit/create a profile, which includes uploading a photo. Everything works fine in the ...
0
votes
0answers
109 views
How can I use django facebook connect?
I want to use facebook connect with my app, how can I used that wheather I have to place the facebook_connect folder inside my app directory or I can simply install it.
I have tried it without ...
0
votes
1answer
58 views
Order object_list with django-profiles
Using the django-profiles app, I want to display the users' profiles in an ordered list.
Ordered by different fields, depending on the situation.
Now the docs say something about passing extra ...
0
votes
1answer
66 views
Django-registration - uncomplete stuff
I'm using django-registration and django-profiles and after having confirm the registration, I meet a 404 when I try to access to the page http://example.com/profiles/fox/ -
I saw with the ...
1
vote
1answer
42 views
Accessing objects parent property in django profiles
I am using django profiles with having different types of profiles.
My Profile Model of Company is similar to:
from django.db import models
from django.contrib.auth.models import User
from ...
0
votes
1answer
233 views
Django - multiple profiles
In my project I have two different types of users: teacher and student, each with their own profile data.
After searching for the best approach it seems the way to go forward is using multi-table ...
0
votes
1answer
62 views
Can't accessing django profile with query from db while it get profile of logged in user
I am developing a site in django and having two types of profiles. One of them named Person. So I am trying to access a Person object, using following code:
from django.contrib.auth.forms import ...
0
votes
3answers
305 views
Django {{ profile }} globally available in templates
I'm building app with django-registration and django-profiles. Everywhere on the page I have the section displaying data of currently logged in user (like first and last name, using syntax like: {{ ...
1
vote
1answer
390 views
django profile creation, set User profile while using multiple profile types
I am stuck at user registration, I actually intends to have different profile types. While registration I am unable to set UserProfile while creating a user. I am using UserCreationForm. code in my ...
0
votes
2answers
512 views
django profies and request.user - error
I'm getting the following error:
'AnonymousUser' object has no attribute 'get_profile'
after I added the following middleware, and try to log on to my site without having logged on before:
...
0
votes
1answer
102 views
Do I need to override save method to add data to different models from django UserCreationForm
I want to add another field in UserCreationForm to be shown in RegistrationForm , I saw a couple of examples on stackoverflow for that purpose. I mean the examples by defining different RegisterForm ...
0
votes
1answer
63 views
populating multi-table inherited models in django
I am using models in following way:
class UserProfile:
# Some Stuff
class CompanyProfile(UserProfile):
# Some more stuff
class CandidateProfile(UserProfile):
# Even more stuff
mean CompanyProfile ...
1
vote
1answer
141 views
What is better way to have multiple type of member profiles in django
I see another question on stackoverflow.com whose title seems similar but that doesnot fulfil my requirements and my users are very different so only different roles will may be not work well. I have ...
6
votes
2answers
1k views
Where is a good place to work on accounts/profile in Django with the Django registration app?
I've noticed that after I log in with Django registration it redirects me to accounts/profile/. By default Django registration's url.py doesn't handle accounts/profile/, so I need to create my own.
...
1
vote
2answers
500 views
Adding ImageField to Django Models Results in Error
I'm currently working on my first Django project and have hit a roadblock in regard to adding an ImageField to an existing model.
I currently have a model for a user posting content and one for ...
0
votes
2answers
423 views
django gets a 404 page when I try to access django-registration
Hello and thank you in advance,
When I installed django-profiles and django-registration. I believe I followed a tutorial correctly on how to configure them:
...
1
vote
1answer
105 views
How to staff user edit thier profile in django admin?
I'm new to Django and I'm working on a website that will only contain users as staff users. I'm the admin of this site and I will register a user, then give him his username and password to login and ...
1
vote
2answers
254 views
django-profiles and nonetype user
I am stumped!
I am building a form that allows the user to fill in profile fields and user fields at the same time. There are examples all over the web for this and a number on this site (eg How to ...
0
votes
1answer
147 views
Django_Profiles won't automatically create profile, other errors
I'm working on my first Django project and employing django-registration and django-profiles. The former worked beautifully with nary an issue. The second has been a bit more problematic.
After many ...
2
votes
1answer
1k views
AUTH_PROFILE_MODULE value in django when the models is not a file but a directory
I had the following: (it worked as expected)
# In <..>/profile/models.py
class UserProfile()
#In settings.py
AUTH_PROFILE_MODULE = "profile.UserProfile"
I have the following: (not working)
# ...
0
votes
1answer
192 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 ...
1
vote
1answer
67 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 ...
0
votes
1answer
179 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
986 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
207 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
2answers
986 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
153 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
383 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 ...
2
votes
2answers
2k 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 ...
0
votes
1answer
1k 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
883 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
252 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:
{% ...
5
votes
1answer
2k views
1
vote
1answer
215 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 ...
14
votes
3answers
5k 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
3answers
665 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 ...
1
vote
3answers
629 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 ...
0
votes
1answer
146 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 ...
6
votes
2answers
476 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 ...
1
vote
1answer
965 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 ...