Django username is not allow non-ascii, is there any way to overwrite username in modelform, then it accpets non-ascii charactor?
class RegiForm(ModelForm):
username = forms.CharField()
password=forms.CharField(label=(u'password'), widget=forms.PasswordInput(render_value=False))
password2=forms.CharField(label=(u'password2'), widget=forms.PasswordInput(render_value=False))
def clean_username(self):