How to add max_length to allauth username

后端 未结 5 956
孤街浪徒
孤街浪徒 2021-01-25 07:08

I\'m using Django allauth as my user account framework for my django site. The docs show there is an ACCOUNT_USERNAME_MIN_LENGTH however there is no ACCOUNT_USERNAME_MAX_L

5条回答
  •  时光取名叫无心
    2021-01-25 07:36

    Try importing with the full name like in your forms : from allauth.accouts import forms as AllauthForms class AllauthSignupForm(AllauthForms.SignupForm): ....

    i didn't test this and sorry i posted this with my phone i will reformat the answer soon

提交回复
热议问题