from django.forms import ModelForm from engine.core.widgets import JSONTableWidget from engine.authv.models import User class UserForm(ModelForm): # type: ignore [type-arg] class Meta: model = User fields = "__all__" widgets = { "attributes": JSONTableWidget(), }