Skip to content

Commit

Permalink
It blew up. But this might fix it. Make sure './templates' is in the …
Browse files Browse the repository at this point in the history
…TEMPLATES['DIRS'] list in settings.py
  • Loading branch information
joshSzep committed Jul 22, 2024
1 parent 4434e50 commit 4f75284
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hangul_tutor/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [],
"DIRS": [
os.path.join(BASE_DIR, "templates"),
],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
Expand Down

0 comments on commit 4f75284

Please sign in to comment.