From b7fa6e5bd165ec3e4ca404e1995eff07796d63b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Wed, 10 Apr 2024 10:47:59 +0200 Subject: [PATCH] Mailman3: reorder of the installed apps to fix templates loading MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Bompard --- roles/mailman3/templates/settings.py.j2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/mailman3/templates/settings.py.j2 b/roles/mailman3/templates/settings.py.j2 index 61b7114665..b7c55b83a8 100644 --- a/roles/mailman3/templates/settings.py.j2 +++ b/roles/mailman3/templates/settings.py.j2 @@ -48,9 +48,6 @@ ROOT_URLCONF = 'urls' # Application definition INSTALLED_APPS = ( - 'allauth', - 'allauth.account', - 'allauth.socialaccount', 'compressor', # Uncomment the next line to enable the admin: 'django.contrib.admin', @@ -63,10 +60,13 @@ INSTALLED_APPS = ( 'django.contrib.humanize', 'django_extensions', 'django_gravatar', - 'django_mailman3', 'django_q', 'hyperkitty', 'postorius', + 'django_mailman3', + 'allauth', + 'allauth.account', + 'allauth.socialaccount', {% for service_name, service_data in mailman_login.items() %} 'allauth.socialaccount.providers.{{ service_data.provider }}', {% endfor %}