17 lines
388 B
Python
17 lines
388 B
Python
|
from django import forms
|
||
|
from django.contrib.auth.forms import UserChangeForm, UserCreationForm
|
||
|
from .models import CustomUser
|
||
|
|
||
|
|
||
|
class CustomUserCreationForm(UserCreationForm):
|
||
|
class Meta:
|
||
|
model = CustomUser
|
||
|
fields = ('username', )
|
||
|
|
||
|
|
||
|
class CustomUserChangeForm(UserChangeForm):
|
||
|
|
||
|
class Meta:
|
||
|
model = CustomUser
|
||
|
fields = UserChangeForm.Meta.fields
|