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
Trying to get django-admin-env-notice to work with grappelli The bar is not showing on the admin site
ENVIRONMENT_NAME = 'Local' ENVIRONMENT_COLOR = 'GREY'
Tried the following selectors and also without any selectors:
ENVIRONMENT_ADMIN_SELECTOR = "grp-header" ENVIRONMENT_ADMIN_SELECTOR = ".grp-module-login:before, #grp-header" ENVIRONMENT_FLOAT = True
TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates/')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django_admin_env_notice.context_processors.from_settings', 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', 'django.template.context_processors.request', ], }, }, ]
django_admin_env_notice in INSTALLED_APPS above django.contrib.admin
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Trying to get django-admin-env-notice to work with grappelli
The bar is not showing on the admin site
What I Did
Tried the following selectors and also without any selectors:
django_admin_env_notice in INSTALLED_APPS above django.contrib.admin
The text was updated successfully, but these errors were encountered: