7 lines
182 B
Python
7 lines
182 B
Python
|
from django.contrib.auth.forms import UserChangeForm
|
||
|
from .models import User
|
||
|
|
||
|
class SpecialUserChangeForm(UserChangeForm):
|
||
|
class Meta(UserChangeForm.Meta):
|
||
|
model = User
|