Created
December 28, 2011 11:23
-
-
Save dfalk/1527620 to your computer and use it in GitHub Desktop.
django admin utf8 usernames
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from django import forms | |
from django.utils.translation import ugettext, ugettext_lazy as _ | |
from django.contrib.auth.models import User | |
from django.contrib import admin | |
from django.contrib.auth.admin import UserAdmin | |
from django.contrib.auth.forms import UserCreationForm, UserChangeForm | |
import re | |
class UnicodeUserCreationForm(UserCreationForm): | |
username = forms.RegexField(label=_("Username"), max_length=30, regex=re.compile(ur'^[\w.@+-]+$', re.UNICODE), | |
help_text = _("Required. 30 characters or fewer. Letters, digits and @/./+/-/_ only."), | |
error_messages = {'invalid': _("This value may contain only letters, numbers and @/./+/-/_ characters.")}) | |
class UnicodeUserChangeForm(UserChangeForm): | |
username = forms.RegexField(label=_("Username"), max_length=30, regex=re.compile(ur'^[\w.@+-]+$', re.UNICODE), | |
help_text = _("Required. 30 characters or fewer. Letters, digits and @/./+/-/_ only."), | |
error_messages = {'invalid': _("This value may contain only letters, numbers and @/./+/-/_ characters.")}) | |
class UnicodeUserAdmin(UserAdmin): | |
form = UnicodeUserChangeForm | |
add_form = UnicodeUserCreationForm | |
admin.site.unregister(User) | |
admin.site.register(User, UnicodeUserAdmin) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment