13 lines
280 B
Python
13 lines
280 B
Python
from django.forms import ModelForm
|
|
|
|
from core.widgets import JSONTableWidget
|
|
from vibes_auth.models import User
|
|
|
|
|
|
class UserForm(ModelForm):
|
|
class Meta:
|
|
model = User
|
|
fields = "__all__"
|
|
widgets = {
|
|
"attributes": JSONTableWidget(),
|
|
}
|