Tagged Questions
The django-authentication tag has no wiki summary.
18
votes
6answers
3k views
Can django's auth_user.username be varchar(75)? How could that be done?
Is there anything wrong with running alter table on auth_user to make username be varchar(75) so it can fit an email? What does that break if anything?
If you were to change auth_user.username to be ...
12
votes
1answer
180 views
Allowing only single active session per user in Django app
I want to restrict logged-in users to only have one active session, i.e. if the user logs in with a new sessionid, the old session should be terminated.
I found a lot of help on SO already:
here and ...
9
votes
5answers
3k views
Django: Populate user ID when saving a model
I have a model with a created_by field that is linked to the standard Django User model. I need to automatically populate this with the ID of the current User when the model is saved. I can't do ...
7
votes
3answers
2k views
How can I detect multiple logins into a Django web application from different locations?
I want to only allow one authenticated session at a time for an individual login in my Django application. So if a user is logged into the webpage on a given IP address, and those same user ...
5
votes
4answers
192 views
Django: any way to avoid querying for request.user on every request?
For my website pretty much every page has a header bar displaying "Welcome, ABC" where "ABC" is the username. That means request.user will be called for every single request resulting in database hits ...
5
votes
1answer
854 views
How can make Django permission_required decorator not to redirect already logged-in users to login page, but display some message
How can make Django permission_required decorator not to redirect already logged-in users to login page, but display some message like Insufficient permissions?
Thank you.
4
votes
4answers
903 views
Can I change Django's auth_user.username field to be 100 chars long without breaking anything?
Before somebody marks this question as a duplicate of this question Can django's auth_user.username be varchar(75)? How could that be done? or other such questions on SO, please read this question. ...
4
votes
2answers
581 views
How do I set session variables at login using django-registration and auth?
I'm using django-registration to log users into my application. That part works fine. The part that I cannot figure out is how to set custom session variables when the user logs in. For instance, ...
4
votes
1answer
428 views
Django: Are row level permissions for instance specific rules, or are they about views?
Sorry for the confusing title. I tried to make it less verbose, but...
What I'm wondering is: Does Django's new row level permissions (a) fix the design problem that comes with multi-tenant ...
4
votes
5answers
2k views
How to force user logout in django?
In my django app under certain conditions I need to be able to force user logout by a username. Not necessarily the current user who is logged in, but some other user. So the request method in my view ...
3
votes
2answers
136 views
Getting `django-registration` to send you to the page you were originally trying to visit
django.contrib.auth has an awesome feature: When you try to access a page that's decorated by login_required, you get redirected to the login page with a next argument, so after you login you get ...
3
votes
3answers
56 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
228 views
Designing a Django voting system without using accounts
We are considering implementing a voting system (up, down votes) without using any type of credentials--no app accounts nor OpenID or anything of that sort.
Concerns in order:
Prevent robot votes
...
3
votes
1answer
454 views
Implement Django Simple Captcha with the existing django.contrib.auth.forms
I would like to add captcha on my django registration form using Django Simple Captcha found here: http://code.google.com/p/django-simple-captcha/
This works great if you create a new form but I'm ...
3
votes
2answers
820 views
Django auth: increasing max username length
I need to increase the max username size in auth to exceed the 30 chars defined in the model.
How can it be done? I' m not sure that just customizing the model is the right or safe way.
3
votes
3answers
752 views
Django - user permissions to certain views?
From the admin I see that you can allocate permissions to a user or a user group to :allow add, change or delete data from a model.
That is great, but I also need to allow a user or a user group to ...
3
votes
2answers
115 views
Sending emails when a user is activated in the Django admin
I'm about to create a site that has monitored registration in that only certain people are allowed to register. Undoubtedly some misfits will register despite any writing I put above the registration ...
3
votes
3answers
720 views
How do I access auth User's User.objects.create_user(…) in a south migration?
Instead of using django's auth module I've used my own and already regret it a lot.
In an effort to rectify the situation, I'm trying to migrate the data from my User model to ...
3
votes
4answers
359 views
Django design question: extending User to make users that can't log in
The site I'm working on involves teachers creating student objects. The teacher can choose to make it possible for a student to log into the site (to check calendars, etc) OR the teacher can choose to ...
3
votes
1answer
455 views
django auth - has_perm returns True while list of permissions is empty
I'm wondering why this code section prints out the following:
print "request.user.has_perm('bug_tracking.is_developer'): " + str(request.user.has_perm('bug_tracking.is_developer'))
...
3
votes
4answers
982 views
(Django) Sharing authentication across two sites that are on different domains
I have two sites say foo.com and bar.com and are both Django based. Primary registration occurs on foo.com (I'd like the main user db to be here) and I'd like for three things to happen:
1) User that ...
2
votes
3answers
40 views
Is it possible to change the Hashing algorithm in django_auth?
I have a running wiki with users. Now I want to write an app in Django to do a specific task.
I have to use my "old" users/groups database (which has a different hashing algorithm for passwords then ...
2
votes
1answer
41 views
Does django auth supports the same user names?
I have two databases and i must move users infor from these to django. The problem is that user names are repeated (these are other users). How does it solve?
2
votes
1answer
86 views
Implementation of sso with django auth. Is this safe?
I'm trying to implement single sign-on using only django auth.
Let's assume two django projects, on different sub-domains: site.com(auth) and app1.site.com(app1)
The auth table in site.com is master. ...
2
votes
1answer
405 views
Django: Redirect to previous page *with query string* after login
I am using django.contrib.auth and would like to redirect to the previous page after logging in. I would like something like the following: Django: Redirect to previous page after login except the ...
2
votes
1answer
119 views
custom form author - auto save author to DB
I have a custom form... I'd like to auto save the author (authenticated user) for the form data. I'm using ModelForm for creating the form.
models.py
class Tracker(models.Model):
client ...
2
votes
2answers
309 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
1answer
177 views
Restricting access to Ajax services using django.contrib.auth
In a web application already using django.contrib.auth for authentication, I'm looking for the "standard" approach for restricting access to Ajax services to authenticated users only.
Using the ...
2
votes
2answers
542 views
Enforcing password strength requirements with django.contrib.auth.views.password_change
We have a Django application that requires a specific level of password complexity. We currently enforce this via client-side JavaScript which can easily be defeated by someone who is appropriately ...
2
votes
2answers
201 views
Django - Read the current's user authentication backend class
I am using a custom authentication backend with Django, to automatically create and login users from a legacy system. My Backend class is this:
from django.contrib.auth.backends import ModelBackend
...
2
votes
2answers
299 views
Django sites framework permissions
I am using the sites framework to run multiple apps off of one code base. I have 3 users, and 3 sites. They can login to the django admin interface and create content but I want them to see only the ...
2
votes
2answers
458 views
Django Piston - Is there a login_required decorator? If not, how do we raise errors?
I can't figure out for the life of me how to ensure a user is authenticated in Piston. Here's what I've tried.
Login_required decorator in Piston. This doesn't seem to work, so I looked and found ...
2
votes
1answer
226 views
Django buil-in login view and errors
I'm using the django.contrib.auth.views.login and .logout views. Very handy, worked out of the box, would deploy again AAA+ etc.
The problem arises since I'm not using a separate login page, but ...
2
votes
4answers
372 views
Create user notification system in Django
I am adding a system to leave "notifications" for users that can be displayed the next time they log in. I created a simple Notification class in the models.py file. I have this UserInfo class (in the ...
2
votes
2answers
175 views
Dynamic login/logout URLs in Django
I have an app that serves pages like this /stage/stagename. stagename is variable. The URL mappers just look for a [0-9A-Za-z]+ to fill that slot.
Now, because of my setup, My app will be rooted at ...
2
votes
2answers
519 views
Change Django ModelChoiceField to show users' full names rather than usernames
I have a form in my Django app (not in admin) that allows staff members to select a user from a dropdown.
forms.ModelChoiceField(queryset = User.objects.filter(is_staff=False), required = False)
...
2
votes
2answers
460 views
Django authentication
In my base.html file, I am using
{% if user.is_authenticated %}
<a href="#">{{user.username}}</a>
{% else %} <a href="/acc/login/">log in</a>
Here, even if the user is logged ...
2
votes
1answer
534 views
Django's self.client.login(…) does not work in unit tests
I have created users for my unit tests in two ways:
1) Create a fixture for "auth.user" that looks roughly like this:
{
"pk": 1,
"model": "auth.user",
"fields": {
...
2
votes
1answer
320 views
Override default get_absolute_url on User objects?
I'm trying to make a generic table for listing django_tables objects. I've got everything working, except that the get_absolute_urls() on my User objects returns:
/users/<username>/
While I ...
2
votes
2answers
2k views
Django login redirect not working?
I go to my webpage http://localhost:8000/listings/post/, it fails the test
@user_passes_test(lambda u: u.is_authenticated() and u.get_profile().shipper)
as expected, and redirects me to ...
2
votes
3answers
688 views
Best way to add convenience methods to a Django Auth User model?
I want to add a convenience/model method to the django.contrib.auth.models.User model. What is the best practice for doing this since, last time I checked, extending the User model was considered bad ...
2
votes
2answers
172 views
How to preset the username in Djangos login form?
After being dissatisfied with the existing solutions I wrote an OpenId provider for Django.
If now somebody wants to authenticate himself somewhere as http://tejp.de/users/abc/ and needs to login for ...
2
votes
3answers
461 views
OpenID in django without local site accounts
I'm working on a django site, which I want the authentication part to work exactly like how Stack Overflow works. A new user comes to the site, they click on "create new account", choose their OpenID ...
2
votes
3answers
1k views
Django : Adding a property to the User class. Changing it at runtime and UserManager.create_user
For various complicated reasons[1] I need to add extra properties to the Django User class.
I can't use either Profile nor the "inheritance" way of doing this. (As in ...
2
votes
3answers
1k views
django Authentication using auth.views
User should be redirected to the Login page after registration and after logout. In both cases there must be a message displayed indicating relevant messages.
Using the ...
2
votes
1answer
1k views
Do Django custom authentication backends need to take a password?
Here's how my university handles authentication: we redirect the user to a website, they enter in their username and password, then they get redirected back to us with the username and a login key ...
1
vote
0answers
40 views
Session being reset by django-all auth
I am using django all auth for login on my website. I want to pass some session variables from one view to the other, but when i go to login page through all auth, somehow my session variable are ...
1
vote
1answer
58 views
Can I use a custom model with Django's authentication system?
I wrote a custom backend for my application to process logins in a sort-of unique way, as I have specific needs for this project. Here's my backend:
from my.project.models import User
from hashlib ...
1
vote
3answers
74 views
Django authentication failing with a 403 with no detailed message
I have something pretty simple which I've thrown together. I have a little form like this:
<form id="loginForm" action>
<input name="email_address" type="text" placeholder="Email">
...
1
vote
0answers
182 views
django-socialregistration registration and login just isn't working
I'm seriously confused with getting django-socialregistration working.
So my settings file:
TEMPLATE_CONTEXT_PROCESSORS = (
"django.contrib.auth.context_processors.auth",
...