From 472c068cfeb6ea0ea346825773085f4280067f2b Mon Sep 17 00:00:00 2001 From: Jonathan Weth <git@jonathanweth.de> Date: Tue, 10 Mar 2020 16:48:19 +0100 Subject: [PATCH] Show "SITE_DESCRIPTION" in the configuration admin view --- aleksis/core/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aleksis/core/settings.py b/aleksis/core/settings.py index 7ecdaad84..f97070433 100644 --- a/aleksis/core/settings.py +++ b/aleksis/core/settings.py @@ -380,7 +380,7 @@ CONSTANCE_CONFIG = { "NOTIFICATION_CHANNELS": (["email"], _("Channels to allow for notifications"), "notifications-select"), } CONSTANCE_CONFIG_FIELDSETS = { - "General settings": ("SITE_TITLE",), + "General settings": ("SITE_TITLE", "SITE_DESCRIPTION"), "Theme settings": ("COLOUR_PRIMARY", "COLOUR_SECONDARY"), "Mail settings": ("MAIL_OUT_NAME", "MAIL_OUT"), "Notification settings": ("NOTIFICATION_CHANNELS", "ADRESSING_NAME_FORMAT"), -- GitLab