[Answer]-Adding form styling to django forms

1👍

There are a lot of ways to do this, but certainly one way would be to overwrite all the widgets in your ModelAdmin rather than in the template. That could look something like this:

from django.db import models
from django.contrib import admin
from django.forms.extras.widgets import TextInput

class MyModelAdmin(admin.ModelAdmin):
    formfield_overrides = {
        models.TextField: {'widget': TextInput(attrs={'class':'my-widget-class'},)},
    }

You’d have to go through and do that for each widget, but then they’d have the appropriate classes — at least for that modelAdmin.

Leave a comment