2๐
โ
I have no tutorials, but can give you advice.
You can customize your admin model with custom css and js, by Media
class, like so:
class MyModelAdmin(admin.ModelAdmin):
class Media:
css = {
"all": ("my_styles.css",)
}
js = ("my_code.js",)
You can look in dev tools, how Django chose names idโs and classes for elements in page and also check the docs.
Admin docs
๐คIvan Semochkin
Source:stackexchange.com