Add missing context processor to test app

This commit is contained in:
Matt Molyneaux 2017-06-13 12:30:22 +01:00
parent c326e089f5
commit 5ac7bba7ba

View file

@ -97,6 +97,7 @@ def main():
TEMPLATES=[{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': ['templates'],
'OPTIONS': {'context_processors': ['django.contrib.auth.context_processors.auth']},
'APP_DIRS': True,
}],
)