mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-14 15:00:16 +02:00
remove need to set template and staticfiles dirs
shamelessly stolen from Adarnauth
This commit is contained in:
parent
6749b443a1
commit
87968f002c
@ -132,13 +132,13 @@ TEMPLATE_CONTEXT_PROCESSORS = (
|
|||||||
)
|
)
|
||||||
|
|
||||||
TEMPLATE_DIRS = (
|
TEMPLATE_DIRS = (
|
||||||
'customization/templates',
|
os.path.join(BASE_DIR, 'customization/templates'),
|
||||||
'stock/templates',
|
os.path.join(BASE_DIR, 'stock/templates'),
|
||||||
)
|
)
|
||||||
|
|
||||||
STATICFILES_DIRS = (
|
STATICFILES_DIRS = (
|
||||||
'customization/static',
|
os.path.join(BASE_DIR, "customization/static"),
|
||||||
'stock/static',
|
os.path.join(BASE_DIR, "stock/static"),
|
||||||
)
|
)
|
||||||
|
|
||||||
LOGIN_URL = '/login_user/'
|
LOGIN_URL = '/login_user/'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user