Home > Blockchain >  how can I write the admin panel in Django
how can I write the admin panel in Django

Time:10-30

I want to create a Django admin panel myself with this template

like this admin panel How can I do this?

CodePudding user response:

What you are trying to do is almost impossible. But you can change the layout of the admin panel with CSS. There are two packages that make the Django admin panel interesting.

  1. https://pypi.org/project/django-admin-interface/
  2. https://pypi.org/project/django-jet/
  • Related