Skip to content

Instantly share code, notes, and snippets.

@glebpushkov
glebpushkov / account__admin.py
Last active July 19, 2022 19:45
Django & Cognito article snippets
from django.contrib import admin
from django.contrib.auth.admin import UserAdmin
from django.contrib.auth.forms import UserCreationForm, UserChangeForm, UsernameField
from django.utils.translation import ugettext_lazy as _
from account.models import User
class CustomUserCreationForm(UserCreationForm):