0
votes
3answers
28 views
How could I create a screen that would batch create a bunch of Django auth users?
I want to create a helper screen that can create a bunch of Django auth users on my site and have those accounts setup the same exact way as if they were done one by one through th …
1
vote
0answers
45 views
[Django] Custom authentication backend functions in some cases, not always
I am using a custom authentication backend built on CAS and LDAP in a Django project. I intend to have it set up such that it can get permissions based on the what LDAP groups a us …
0
votes
2answers
77 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/ an …
1
vote
2answers
70 views
django - limit users to edit only their own information
I'm playing around with django and built a small app where a user can access their info via the url http:///localhost:8000/username/info/ . I want to add the ability to edit that i …
1
vote
3answers
86 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 h …
0
votes
2answers
80 views
When using sub-domains for a Django site, how can you share django logins across sub-domains on localhost?
I want to let the same user session span across:
site.com
sub1.site.com
sub2.site.com
How can I do this in Django? With the default auth user package it seems to require the user …
0
votes
1answer
123 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.
1
vote
3answers
154 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", …
5
votes
3answers
302 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 …
0
votes
2answers
212 views
Code reuse between django and appengine Model classes
I created a custom django.auth User class which works with Google Appengine, but it involves a fair amount of copied code (practically every method).
It isn't possible to create a …
0
votes
2answers
232 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 reque …
2
votes
3answers
319 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 http://stack …
1
vote
3answers
427 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 django.con …
0
votes
1answer
141 views
In Django admin, how to filter users by group?
It gives you filter by staff status and superuser status, but what about groups?
1
vote
2answers
310 views
Django: Populate user ID when saving a model
Hello,
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 mod …
