A light weight attempt at spicing up the django admin.
We wanted to make the admin look more up-to-date without making sacrifices. These are the main goals and guidelines:
- Attractive design
- Upgrading Django version should cause no problems
- Drop in replacement, no python coding required
- Compatible with third-party admin widgets and apps
- Keep most UX patterns from django admin, diversion should need good motivation
- Edit css first, templates when css is insufficient
- Keep it very stable, no fast moves, it must work
INSTALLED_APPS = ( ... 'nimda', ... 'django.contrib.admin', .... )
If you want to contriute and develop make sure to edit the scss files in the
root of the project. You then need to compile them to css files, this process
can be automatized using node and gulp. First run npm install
in the
django-nimda
directory, then run gulp
to keep a watcher compiling
scss on the fly outputing css to the correct locations. If you want to
compile manually run npm build
.