We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Order of INSTALLED_APPS:
'grappelli_extensions', 'grappelli', 'django.contrib.admin', ...
'APP_DIRS': True, available in TEMPLATES in settings.py
'APP_DIRS': True,
TEMPLATES
TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [ os.path.join(BASE_DIR, 'templates'), ], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.template.context_processors.media', 'django.template.context_processors.static', 'django.template.context_processors.tz', 'django.contrib.messages.context_processors.messages', ] }, }, ]
I also tried to disabled 'APP_DIRS' and added the 'apptemplates.Loader' to 'loaders' in 'TEMPLATES' setting.
'loaders': [ 'apptemplates.Loader', ]
But no luck to use grappelli-extensions with Django 2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Order of INSTALLED_APPS:
'grappelli_extensions',
'grappelli',
'django.contrib.admin',
...
'APP_DIRS': True,
available inTEMPLATES
in settings.pyTEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [ os.path.join(BASE_DIR, 'templates'), ], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.template.context_processors.media', 'django.template.context_processors.static', 'django.template.context_processors.tz', 'django.contrib.messages.context_processors.messages', ] }, }, ]
I also tried to disabled 'APP_DIRS' and added the 'apptemplates.Loader' to 'loaders' in 'TEMPLATES' setting.
'loaders': [ 'apptemplates.Loader', ]
But no luck to use grappelli-extensions with Django 2
The text was updated successfully, but these errors were encountered: