Преглед изворни кода

Merge pull request #150 from willstott101/patch-1

Allow dots in usernames
pull/153/head
Ji Qu пре 5 година
committed by GitHub
родитељ
комит
51c2050c77
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      users/forms.py

+ 1
- 1
users/forms.py Прегледај датотеку

@@ -13,7 +13,7 @@ class UserCreationForm(forms.ModelForm):
}
username = forms.RegexField(
label=_("Username"), max_length=30,
regex=r'^[\w-]+$'
regex=r'^[\w\-.]+$'
)
password = forms.CharField(
label=_("Password"),


Loading…
Откажи
Сачувај