From 974a6e6690a2029f8261bb8f1b5373e0a55eec76 Mon Sep 17 00:00:00 2001 From: jvs Date: Fri, 17 Jan 2025 17:33:12 +0100 Subject: [PATCH] Fix Template Error --- core/accounts/templates/accounts/home.html | 2 +- core/core/settings.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/core/accounts/templates/accounts/home.html b/core/accounts/templates/accounts/home.html index 90ebc1d..f2f58ac 100644 --- a/core/accounts/templates/accounts/home.html +++ b/core/accounts/templates/accounts/home.html @@ -1,5 +1,5 @@ - + diff --git a/core/core/settings.py b/core/core/settings.py index ccf4a5f..490792a 100644 --- a/core/core/settings.py +++ b/core/core/settings.py @@ -31,6 +31,7 @@ ALLOWED_HOSTS = ['127.0.0.1', 'localhost'] # Application definition INSTALLED_APPS = [ + 'accounts.apps.AccountsConfig', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes',