Fix url template

This commit is contained in:
Andros Fenollosa
2023-07-24 14:58:15 +02:00
parent 55c17554f1
commit 7b6613bd36
3 changed files with 5 additions and 4 deletions

View File

@ -57,8 +57,8 @@ ROOT_URLCONF = "core.urls"
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [os.path.join(BASE_DIR, "app", "templates")],
"APP_DIRS": True,
"DIRS": [os.path.join(BASE_DIR, "templates")],
"APP_DIRS": False,
"OPTIONS": {
"context_processors": [
"django.template.context_processors.debug",