- Add
git+https://github.com/cuescience/cuescience-design#egg=cuescience-design
to yourrequirements.txt
'cuescience_design'
to installed apps above the django admin.- Add
"cuescience_design.processor.admin_caption"
to yourTEMPLATE_CONTEXT_PROCESSORS
(when using django 1.8 usecontext_processors
in theTEMPLATES
configuration) - Add the following constants to your
settings.py
:
PROJECT_VERSION = "1.0"
PROJECT_NAME = "Your Project Name"
PROJECT_COLOR = (r, g, b) # your admin color as rgb triple
´´´