mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-17 03:51:02 +03:00
Give admin_forms the forms namespace
This will make extending various signup and registration forms easier.
This commit is contained in:
parent
c62c3eada8
commit
ec3922cfe6
|
@ -1,22 +1,23 @@
|
||||||
from django.contrib.auth import forms, get_user_model
|
from django.contrib.auth import get_user_model
|
||||||
|
from django.contrib.auth import forms as admin_forms
|
||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
|
||||||
User = get_user_model()
|
User = get_user_model()
|
||||||
|
|
||||||
|
|
||||||
class UserChangeForm(forms.UserChangeForm):
|
class UserChangeForm(admin_forms.UserChangeForm):
|
||||||
class Meta(forms.UserChangeForm.Meta):
|
class Meta(admin_forms.UserChangeForm.Meta):
|
||||||
model = User
|
model = User
|
||||||
|
|
||||||
|
|
||||||
class UserCreationForm(forms.UserCreationForm):
|
class UserCreationForm(admin_forms.UserCreationForm):
|
||||||
|
|
||||||
error_message = forms.UserCreationForm.error_messages.update(
|
error_message = admin_forms.UserCreationForm.error_messages.update(
|
||||||
{"duplicate_username": _("This username has already been taken.")}
|
{"duplicate_username": _("This username has already been taken.")}
|
||||||
)
|
)
|
||||||
|
|
||||||
class Meta(forms.UserCreationForm.Meta):
|
class Meta(admin_forms.UserCreationForm.Meta):
|
||||||
model = User
|
model = User
|
||||||
|
|
||||||
def clean_username(self):
|
def clean_username(self):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user