edge
edge copied to clipboard
Disable admin styling?
Is there anyway to disable the styling used for the admin section. Its actually quite hard to difficult with, and the form layout is unclear. I'd like to use Django's default styling.
Did you try deleting base_site.html? It should be located in your project's path: src/templates/admin/base_site.html. Then the default Django admin base template should kick in.
Yes, I did try that. My new base_site.html just has:
{% extends "admin/base.html" %}
{% load admin_static %}
but nothing changes on the interface.