Override base.html template to brand site
All checks were successful
/ Ansible Lint (push) Successful in 2m9s
All checks were successful
/ Ansible Lint (push) Successful in 2m9s
This commit is contained in:
parent
d26fbf2577
commit
7a1ea7d40e
4 changed files with 269 additions and 1 deletions
34
resources/chaosknoten/lists/docker_compose/settings_local.py
Normal file
34
resources/chaosknoten/lists/docker_compose/settings_local.py
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# might need to copy (some) code from https://github.com/maxking/docker-mailman/blob/main/web/mailman-web/settings.py
|
||||
|
||||
import os
|
||||
|
||||
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
HYPERKITTY_ENABLE_GRAVATAR=False
|
||||
FILTER_VHOST = True
|
||||
|
||||
TEMPLATES = [
|
||||
{
|
||||
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
||||
'DIRS': [
|
||||
BASE_DIR + '/templates',
|
||||
],
|
||||
'APP_DIRS': True,
|
||||
'OPTIONS': {
|
||||
'context_processors': [
|
||||
'django.template.context_processors.debug',
|
||||
'django.template.context_processors.i18n',
|
||||
'django.template.context_processors.media',
|
||||
'django.template.context_processors.static',
|
||||
'django.template.context_processors.tz',
|
||||
'django.template.context_processors.csrf',
|
||||
'django.template.context_processors.request',
|
||||
'django.contrib.auth.context_processors.auth',
|
||||
'django.contrib.messages.context_processors.messages',
|
||||
'django_mailman3.context_processors.common',
|
||||
'hyperkitty.context_processors.common',
|
||||
'postorius.context_processors.postorius',
|
||||
],
|
||||
},
|
||||
},
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue