Forces admin site to use your custom login.
Very useful when using RemoteUserBackend.
See here for a use case.
1 2 3 4 5 6 7 8 9 10 | """urls.py"""
from django.conf.urls.defaults import *
from django.contrib import admin
admin.autodiscover()
admin.site.login = login_required(admin.site.login)
urlpatterns = patterns('',
(r'^accounts/login/$', 'mycustom.auth.view'),
)
|
More like this
- Generate and render HTML Table by LLyaudet 1 day, 18 hours ago
- My firs Snippets by GutemaG 5 days, 3 hours ago
- FileField having auto upload_to path by junaidmgithub 1 month, 1 week ago
- LazyPrimaryKeyRelatedField by LLyaudet 1 month, 2 weeks ago
- CacheInDictManager by LLyaudet 1 month, 2 weeks ago
Comments
Don't forget
#
Please login first before commenting.