Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- TEMPLATES: List[Dict[str, Any]] = [
- {
- "BACKEND": "django.template.backends.jinja2.Jinja2",
- "DIRS": [
- (Path(BASE_DIR, "templates")),
- ],
- "APP_DIRS": True,
- "OPTIONS": {},
- },
- {
- "BACKEND": "django.template.backends.django.DjangoTemplates",
- "DIRS": [
- "venv/lib/python3.10/site-packages/django/contrib/admin/templates"
- ],
- "APP_DIRS": False,
- "OPTIONS": {
- "context_processors": [
- "django.template.context_processors.debug",
- "django.template.context_processors.request",
- "django.contrib.auth.context_processors.auth",
- "django.contrib.messages.context_processors.messages",
- ],
- },
- },
- ]
Advertisement
Add Comment
Please, Sign In to add comment