16 lines
375 B
Python
16 lines
375 B
Python
from django.contrib.auth.forms import UserChangeForm, UserCreationForm
|
|
|
|
from apps.users.models import User
|
|
|
|
|
|
class CustomUserCreationForm(UserCreationForm):
|
|
class Meta:
|
|
model = User
|
|
fields = ("mobile", "first_name", "last_name")
|
|
|
|
|
|
class CustomUserChangeForm(UserChangeForm):
|
|
class Meta:
|
|
model = User
|
|
fields = ("mobile", "is_verified")
|