Add fieldsets to model form

Hi, I have a django.forms ModelForm (not admin) which needs some fields organized into fieldsets. I thought this would be a standard feature, but I’m not seeing anything about it in the documentation. I’ve also looked at the source file django/forms/models.py. Am I missing something obvious?

Thanks!
Dow

Base Django doesn’t provide any significant functionality regarding the organization of fields in forms.
If you’re looking for a package to provide more detailed layout management, I recommend django-crispy-forms.

Perfect! Thanks so much, Ken!