django-admin-material is a different style for Django Admin. It is based on Material Design by Google https://material.io
The framework used is Materialize CSS https://materializecss.com
NOTE: This project is still under development. Feel free to contribute and open new issues if you find any problem. I will release the version 1.0.0 once it becomes stable and production ready.
Install using:
pip install django-admin-material
Add "django_admin_material" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'django_admin_material', ]
It should be as high as possible, definetly higher than 'django.contrib.admin'
Download/clone this repository
Run (possibly in a virtual environment):
pip install -r requirements.txt
Run:
./reset_db.sh
It will install the necessary migration and fixtures
Run:
python3 manage.py runserver
Log in using "admin:admin"