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
- Use both NTLM and Anonymous authentication with IIS by ungenio41 1 year, 10 months ago
- Email or username authentication with masquerading by petrilli 2 years, 11 months ago
- Login with email or username by zeeg 3 years, 9 months ago
- Log in a user without requiring credentials by SmileyChris 2 years, 11 months ago
- OracleAuthBackend by nosrednakram 2 years, 9 months ago
Comments