django-authentication
Django. Authentication backends
I need to authenticate on some of atlassian services(wiki for example) and on AD(ActiveDirectory). The problem is I don\'t know how to make authentication in different back-ends so user input password[详细]
2023-04-13 09:42 分类:问答Can I use email addresses as usernames in django-auth?
I\'d like to use email addresses as a pseudo-username of sorts while using Django\'s auth module. Can I do this? User.username is limited to 30 characters which really isn\'t acceptable for lo开发者_如[详细]
2023-04-08 02:06 分类:问答Check multiple organizational units (ou) with django_auth_ldap
Our ldap is set up so that we have multiple different organizational units (ou). I currently have a django project using django_auth_ldap to connect to our ldap server so people can login with their l[详细]
2023-03-27 23:17 分类:问答Does django auth supports the same user names?
I have two databases and i must move users infor fr开发者_运维知识库om these to django. The problem is that user names are repeated (these are other users). How does it solve?It doesn\'t \'solve\' mul[详细]
2023-03-27 17:43 分类:问答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 = ([详细]
2023-03-26 14:40 分类:问答Remembering Custom and Third Party Cookies Post Django Login
I\'ve noticed that logging in a user using django.contrib.auth.login deletes all custom and third party cookies previously set. This is breaking lots of things, such as my Google Web Optimizer tests,[详细]
2023-03-26 12:06 分类:问答How do I revise Django's authentication module?
I\'m relatively new 开发者_运维知识库to Django, and am trying to make some changes to Django\'s core authentication module. I added some new code that authenticates a user based on their email address[详细]
2023-03-23 03:06 分类:问答Adding extra_context in Django logout built-in view
In django/contrib/auth/views.py there is the definition of the logout view : def logout(request, next_page=None,[详细]
2023-03-21 19:42 分类:问答Login and registration form on one page with Django
I have been stuck on this for a while. I am trying to put both the login and registration forms on the same page, however I have been getting multiple errors depending on which approach I try. The pag[详细]
2023-03-20 23:48 分类:问答Django username edit issue
I want to allow users to change their usernames, so I have a form: class UserForm(models.ModelForm): class Meta:[详细]
2023-03-20 18:49 分类:问答