I would like to implement a function in Django admin, that if a person logged is superuser then the color in admin is different. How can I approach it?
I don't want 'normal' users to have access to admin, but I want to have 2 levels of access - superuser that can change everything (and add more personnel etc) and normal staff level, who can't add other employees and is limited in what he can do.
How can I approach the issue?
Can I simply add flag somewhere which states that if logged user is superuser then use different/additional css or something?