├── .coveragerc ├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── django_admin_env_notice ├── __init__.py ├── apps.py ├── context_processors.py ├── templates │ └── admin │ │ └── base_site.html └── views.py ├── manage.py ├── requirements.txt ├── requirements_dev.txt ├── requirements_test.txt ├── runtests.py ├── screenshots ├── dev.png ├── prod.png └── testing.png ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── settings.py ├── test.py └── urls.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/README.md -------------------------------------------------------------------------------- /django_admin_env_notice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/django_admin_env_notice/__init__.py -------------------------------------------------------------------------------- /django_admin_env_notice/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/django_admin_env_notice/apps.py -------------------------------------------------------------------------------- /django_admin_env_notice/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/django_admin_env_notice/context_processors.py -------------------------------------------------------------------------------- /django_admin_env_notice/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/django_admin_env_notice/templates/admin/base_site.html -------------------------------------------------------------------------------- /django_admin_env_notice/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | # Additional requirements go here 3 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/runtests.py -------------------------------------------------------------------------------- /screenshots/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/screenshots/dev.png -------------------------------------------------------------------------------- /screenshots/prod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/screenshots/prod.png -------------------------------------------------------------------------------- /screenshots/testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/screenshots/testing.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dizballanze/django-admin-env-notice/HEAD/tox.ini --------------------------------------------------------------------------------