schon/vibes_auth/forms.py

13 lines
307 B
Python

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