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
- FileField having auto upload_to path by junaidmgithub 2 days ago
- LazyPrimaryKeyRelatedField by LLyaudet 1 week, 2 days ago
- CacheInDictManager by LLyaudet 1 week, 2 days ago
- MYSQL Full Text Expression by Bidaya0 1 week, 3 days ago
- Custom model manager chaining (Python 3 re-write) by Spotted1270 2 weeks, 2 days ago
Comments
Don't forget
#
Please login first before commenting.