summaryrefslogtreecommitdiff
path: root/tests/flatpages_tests/settings.py
blob: ea36b2bbee846594c5e780b5d967ebcc70e3b2aa (plain)
1
2
3
4
5
6
7
8
9
10
11
import os

FLATPAGES_TEMPLATES = [
    {
        "BACKEND": "django.template.backends.django.DjangoTemplates",
        "DIRS": [os.path.join(os.path.dirname(__file__), "templates")],
        "OPTIONS": {
            "context_processors": ("django.contrib.auth.context_processors.auth",),
        },
    }
]