mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-25 07:50:40 +03:00
32 lines
914 B
Python
32 lines
914 B
Python
from django.contrib.auth import forms as admin_forms
|
|
from django.contrib.auth import get_user_model
|
|
from django.core.exceptions import ValidationError
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
User = get_user_model()
|
|
|
|
|
|
class UserChangeForm(admin_forms.UserChangeForm):
|
|
class Meta(admin_forms.UserChangeForm.Meta):
|
|
model = User
|
|
|
|
|
|
class UserCreationForm(admin_forms.UserCreationForm):
|
|
|
|
error_message = admin_forms.UserCreationForm.error_messages.update(
|
|
{"duplicate_username": _("This username has already been taken.")}
|
|
)
|
|
|
|
class Meta(admin_forms.UserCreationForm.Meta):
|
|
model = User
|
|
|
|
def clean_username(self):
|
|
username = self.cleaned_data["username"]
|
|
|
|
try:
|
|
User.objects.get(username=username)
|
|
except User.DoesNotExist:
|
|
return username
|
|
|
|
raise ValidationError(self.error_messages["duplicate_username"])
|