I’ve notice django admin UI does not allow use name with characters that are not English.
I need to use Hebrew characters for user names.
Someone try it?
Thank you,
Ido.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Django auth module admin limits username to be matching
r'^[\w.@+-]+$'. You need to replace the default forms inside ModelAdmin instance: UserAdmin.form and UserAdmin.add_form, like: