DEV Community

Discussion on: How to improve the default django admin

Collapse
 
sikander27 profile image
sikander khan

Hey,
I like your work but is there a way to use a custom dashboard like bootstrap with django admin features like adding a poll, question, etc and to make it asynchronous.
Please help me with this.

Collapse
 
fabiocaccamo profile image
Fabio Caccamo • Edited

Hi,
django-admin-interface purpose is to allow admin style customization with some cool features.

If you need to customize the dashboard, you should override the django dashboard template and add your own logic.

Once you created the dashboard, you can use the CSS variables exposed by django-admin-interface to style it according to the theme options.

Hope it will help.