You can apply custom classes to fields using the ModelAdmin Fieldsets you would like to modify and add an additional stylesheet using
class MyAdmin(admin.ModelAdmin): class Media: css = { "all": ("my_styles.css",) }
Otherwise, you will have to write your own admin templates or widgets.
Gabriel Hurley
source share