From 3eec83ec9af8db29ba9faa0bf305d8b1c49fc782 Mon Sep 17 00:00:00 2001 From: Michal Konecny Date: Thu, 27 Mar 2025 13:50:25 +0100 Subject: [PATCH] [mailman3] Fix the incorrect variable names --- roles/mailman3/templates/settings.py.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/mailman3/templates/settings.py.j2 b/roles/mailman3/templates/settings.py.j2 index b4039c1e3a..16fff6ea9e 100644 --- a/roles/mailman3/templates/settings.py.j2 +++ b/roles/mailman3/templates/settings.py.j2 @@ -93,7 +93,7 @@ TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [ - '{{ mailman_webui_basedir }}/templates', + '{{ mailman3_webui_basedir }}/templates', ], 'OPTIONS': { 'loaders': [ @@ -175,7 +175,7 @@ USE_TZ = True # Don't put anything in this directory yourself; store your static files # in apps' "static/" subdirectories and in STATICFILES_DIRS. # Example: "/var/www/example.com/static/" -STATIC_ROOT = "{{ mailman_webui_basedir }}/static/" +STATIC_ROOT = "{{ mailman3_webui_basedir }}/static/" # URL prefix for static files. # Example: "http://example.com/static/", "http://static.example.com/" @@ -186,7 +186,7 @@ STATICFILES_DIRS = ( # Put strings here, like "/home/html/static" or "C:/www/django/static". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths, not relative paths. - "{{ mailman_webui_basedir }}/static-fedora/", + "{{ mailman3_webui_basedir }}/static-fedora/", ) # List of finder classes that know how to find static files in