The django-users tag has no wiki summary.
9
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 ...
8
votes
2answers
2k views
Extending User object in Django: User model inheritance or use UserProfile?
To extend the User object with custom fields, the Django docs recommend using UserProfiles. However, according to this answer to a question about this from a year or so back:
extending ...
7
votes
4answers
1k views
How to make django messages StackOverflow style?
I'd like to use Django's Messages module, however, I would like my messages to persist until the user clicks an X next to the message as opposed to having messages disappear as soon as the user ...
6
votes
2answers
580 views
How do I prevent permission escalation in Django admin when granting “user change” permission?
I have a django site with a large customer base. I would like to give our customer service department the ability to alter normal user accounts, doing things like changing passwords, email addresses, ...
4
votes
1answer
203 views
Django - User profiles of different types
I have a Django application which allows different kinds of users: firms, administrators, external people etc. Of course all of this is easy to manage with the default authentication system and ...
4
votes
3answers
1k views
How do I inline edit a django user profile in the admin interface?
If you want to store extra information about a user (django.contrib.auth.models.User) in Django you can use the nifty AUTH_PROFILE_MODULE to plug in a "profile" model. Each user then gets a profile. ...
3
votes
1answer
80 views
Manage UserCreationForm properties and fields
I am new in Django and even after trying thoroughly to find an answer for this question, I couldn't find any. =/
I am using UserCretionForm to create my users and I wanted to know a couple of things:
...
3
votes
3answers
60 views
Marking users as new when created via a backend's authenticate in Django
I have an authentication backend based off a legacy database. When someone logs in using that database and there isn't a corresponding User record, I create one. What I'm wondering is if there is some ...
3
votes
2answers
257 views
extending django usermodel
Hi
i am trying to create a signup form for my django app. for this i have extended the user model. This is my
Forms.py
from contact.models import register
from django import forms
from ...
3
votes
1answer
563 views
Django User model, adding function
I want to add a new function to the default User model of Django for retrieveing a related list of Model type.
Such Foo model:
class Foo(models.Model):
owner = models.ForeignKey(User, ...
2
votes
2answers
338 views
Django: Why create a OneToOne to UserProfile instead of subclassing auth.User?
Note: If you are tempted to 'answer' this question by telling me that you don't like django.contrib.auth, please move on. That will not be helpful. I am well aware of the range and strength of ...
2
votes
2answers
142 views
Django: Changing/Allowing User's login username to also use his/her e-mail
As my title says, I want to know if I there's a way to allow a user to use not only his username, but also his user's email to login. I want to standardize the login procedure because at the moment ...
2
votes
3answers
596 views
Django - redirect to login page if UserProfile matching query does not exist error
I have extended the user model using the UserProfile method. However I occasionally get the Django error message UserProfile matching query does not exist when running the query ...
2
votes
2answers
897 views
Django user.is_authenticated works some places, not others
In my template, I have the following:
<ul class="tabbed" id="network-tabs">
{% if user.is_authenticated %}
<li><a href="{% url acct-my-profile %}">My ...
2
votes
2answers
831 views
How to customize the auth.User Admin page in Django CRUD?
I just want to add the subscription date in the User list in the Django CRUDÂ Administration site.
How can I do that ?
Thank you for your help
1
vote
2answers
39 views
In Django, how do you pass a ForeignKey into an instance of a Model?
I am writing an application which stores "Jobs". They are defined as having a ForeignKey linked to a "User". I don't understand how to pass the ForeignKey into the model when creating it. My Model for ...
1
vote
2answers
46 views
User and UserProfile objects in Django
I'm having some trouble with a related field to User in my UserProfile model.
I have this field in my UserProfile model:
friends = models.ManyToManyField(User, null=True)
When I call
...
1
vote
1answer
22 views
Django how to store forms data from several pages into one table
I'm building a django project, and creating user profile app. But I want user to complete creating profile process in multiple pages. For example: first page fill in the address and phone number, and ...
1
vote
3answers
50 views
Django how to delete user's profile and posts and all assocation after user deleted?
I'm writing a django project. And want to know after user deletes his own account, is there a way django build-in to auto delete all object related to this user(e.g. some generic foreign_key)? Or I ...
1
vote
3answers
381 views
Add image/avatar to users in django
I want that each user in my website will have an image in his profile. I don't need any thumbnails or something like that, just picture for each user. The simpler the better. The problem is I don't ...
1
vote
2answers
84 views
Allowing Users logged in with multiple accounts at once to the same Django site
I'm creating a widget that gets installed on various different sites and I need distinct users for each site. Problem is, the same person browsing might have 2 different sites open at once that use my ...
1
vote
1answer
240 views
Django - UserProfile m2m field in admin - error
My models:
class UserProfile(models.Model):
TYPES_CHOICES = (
(0, _(u'teacher')),
(1, _(u'student')),
)
user = models.ForeignKey(User, unique=True)
type = ...
1
vote
4answers
267 views
Use Django User-Model or create a own Model?
I'm currently designing a Django based site. For simplicity lets assume that it is a simple community site where users can log in and write messages to other users.
My current choice is wether to use ...
1
vote
1answer
130 views
Implementing multiple administration levels in Django
I have decided to move a project from PHP to Python and despite hours of searching, I cannot find a way to implement the following design. I have attempted extending the user class and doing ...
1
vote
2answers
470 views
get current user in Django Form
There's part of my Guest Model:
class Guest(models.Model):
event = models.ForeignKey(Event, related_name='guests')
user = models.ForeignKey(User, unique=True, related_name='guests')
....
Form to ...
1
vote
2answers
574 views
Manually validate a django session id is currently authenticated
I need to have a function tell me if a django session id is currently authenticated or not. I understand this is already built into django and I have that working just fine.
But I have an external ...
1
vote
5answers
391 views
Get current user log in signal in Django
I am just using the admin site in Django, I have 2 Django signals (pre_save and post_save) and i would like to have the username of the current user ? How would i do that... It does not seem i can ...
1
vote
3answers
123 views
Send an email if to a Django User if their active status is changed
I've built a site that requires membership for some portions. It's a club website so to be a member on the website, you have to be a member in real life. The plan is to have somebody from the Club ...
1
vote
1answer
173 views
Adding custom action to UserModel's Admin page
Is there any possibility to create custom action in admin page for django UserModel? I want automatize adding user to group (like adding him to staff, set some extra values, etc.), and of course ...
1
vote
1answer
373 views
Django: Completely custom auth question. Please help
I'm creating a multiple-tenant application that won't use any of the standard Django Admin (except for internal use which will have access to all tenants... that's simple enough). I'm trying to create ...
0
votes
1answer
33 views
how to update fields in userProfile in django
When i try to save data to fields in my UserProfile Django raises an typeerror.
I thought that i extended the UserProfile correctly.
My userProfile model:
class UserProfile(models.Model):
user ...
0
votes
1answer
62 views
In Django, when I call User.objects.create_user(username, email, password) - why does post_save get called twice?
In views.py I have the following view which gets called when a new user account is registered. All it does is get the username, email, and password from the request, then try to create a user with ...
0
votes
0answers
31 views
Django admin - user related modules in admin
I use extended user profile (class name: UserProfile). I made an app for this, named account.
In settings I have set:
AUTH_PROFILE_MODULE = 'account.UserProfile'
But I made another model in that ...
0
votes
1answer
48 views
How to use django-postman to provide each user the capability to send messages
I am trying to use django-postman and I have successfully integrated it with my project. I want to use this application to give each user the ability to send messages to other users.
Can anybody ...
0
votes
2answers
31 views
cleaning django db of previous tables
I had a table in Postgres called user that was a custom model. I then switched over to the default Django User class, but there have been issues because of the name overlap. How can I either wipe the ...
0
votes
1answer
51 views
How can I reset and prepoulate all users in django?
I'm developing a django application with some complicated user interactions, so I need to do a lot of testing. Is there an easy way to clear out the Users table (and all associated tables) in the ...
0
votes
1answer
48 views
Linking Django comments with django users
I am using Django in built comments for allowing users to comment on my posts. I have also customized the app to do the following thing
Registered users will see just the text area for comments
...
0
votes
1answer
95 views
How to extend Django User model to manage permissions
I am working on a web-app using Django 1.3 and Python2.6. I have to extend the Django User model such that there are three types of users and manage permissions for each type.
To elucidate, say there ...
0
votes
3answers
39 views
User registers after contributing to the site? In Django
Let's say I have a site where users can contribute content.
If the user is anonymous, and contributes, and comes back after their session is expired, then their contributions are credited to ...
0
votes
1answer
41 views
Hints for the logic of django app
I'm learning Django and for this reason I'm developing an application described below.
This application allows users (authenticated and anonymous) to send message to other users.
Authenticated users ...
0
votes
1answer
81 views
Using new Admin Form when Customizing Django User Model
I am extending the User Model, but seem to be having a problem with using my new admin form.
I have the following code in models.py:
class Preference(models.Model):
choice = ...
0
votes
1answer
100 views
Django admin - how to hide some fields in User edit?
How can I hide fields in admin User edit? Mainly I want to hide permissions and groups selecting in some exceptions, but exclude variable doesn't work :/
0
votes
2answers
166 views
Customizing User Profile in Django
I would like to add new fields at user profile. Its working on admin side but it isnt saving on frontend...
Its very curious because no error is showing, it just doenst save.
In the following code I ...
0
votes
0answers
76 views
How to do this queryset?
I have models:
class Grade(models.Model):
rating = models.FloatField()
title = models.CharField(max_length=250)
text = models.TextField()
pub_date = ...
0
votes
2answers
48 views
is it possible to Only pull related users through foreign key relationship, once in django
Hi im fairly new to the amazing world of django!
Basically im working on a project that requires me to create a fairly unique email notifications system that users can use to refine the updates they ...
0
votes
1answer
226 views
Django: Want a ManyRelatedManager, getting ManyToManyField instead
So in my project I am trying to extend the User model to a Staff class and the Group model to a PermGroup class. However, when I save a PermGroup in the Staff's groups field (inherited from User) it ...
0
votes
1answer
366 views
seperate 'admin' interfaces for different user types in django
I have recently being trying to create a project which has several levels of user involved.
(Just an example of an abbreviated and rough schema)
ME (Super User)
Client(s)
Customer(s)
Survey ...
0
votes
2answers
106 views
Django 1-1 relationship how to
profile = UserProfile.objects.get(....)
what i try to do - is to get profile for the currently logged in user. What should i put in the brackets?
0
votes
1answer
55 views
Getting last created user to link user profile to in django
I've hit a bit of a wall when trying to add data to a UserProfile model created to hold user info beyond what is catered for in django's built in Auth component.
My question is how do I get an ...
0
votes
1answer
381 views
Modify Django user delete method?
If I go to the Django admin page and delete a user, I want it to run some code before/after it deletes the user. I know about overriding models' delete() methods, but I'm not sure how to apply it to ...