From 841c5e08de31a09049de52fb9d4ee01ae89ea817 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 17 Nov 2024 16:56:25 +0100 Subject: [PATCH] fix: Update footer and reorder enabled modules Revises footer content to include a new company name and links to the source code repository, enhancing transparency and resource accessibility. Reorders the ENABLED_MODULES list to ensure correct load order. --- frontend/templates/frontend/base.html | 3 ++- kumify/settings.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/templates/frontend/base.html b/frontend/templates/frontend/base.html index a9f23ca..4fe0641 100644 --- a/frontend/templates/frontend/base.html +++ b/frontend/templates/frontend/base.html @@ -38,7 +38,8 @@ diff --git a/kumify/settings.py b/kumify/settings.py index 1d6e8b6..9c7e97b 100644 --- a/kumify/settings.py +++ b/kumify/settings.py @@ -26,11 +26,11 @@ try: except NameError: ENABLED_MODULES = [ 'cbt', + 'mood', 'dreams', 'health', 'friends', 'habits', - 'mood', 'gpslog', ]