mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			580 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			580 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| 
 | |
| from django.utils._os import upath
 | |
| 
 | |
| AUTH_MIDDLEWARE_CLASSES = [
 | |
|     'django.contrib.sessions.middleware.SessionMiddleware',
 | |
|     'django.contrib.auth.middleware.AuthenticationMiddleware',
 | |
| ]
 | |
| 
 | |
| AUTH_TEMPLATES = [{
 | |
|     'BACKEND': 'django.template.backends.django.DjangoTemplates',
 | |
|     'DIRS': [os.path.join(os.path.dirname(upath(__file__)), 'templates')],
 | |
|     'APP_DIRS': True,
 | |
|     'OPTIONS': {
 | |
|         'context_processors': [
 | |
|             'django.contrib.auth.context_processors.auth',
 | |
|             'django.contrib.messages.context_processors.messages',
 | |
|         ],
 | |
|     },
 | |
| }]
 |