Merge "Email field is made not mandatory in user creation and editing."
This commit is contained in:
commit
fe2554a7d6
@ -70,7 +70,9 @@ ADD_PROJECT_URL = "horizon:admin:projects:create"
|
||||
|
||||
class CreateUserForm(BaseUserForm):
|
||||
name = forms.CharField(label=_("User Name"))
|
||||
email = forms.EmailField(label=_("Email"))
|
||||
email = forms.EmailField(
|
||||
label=_("Email"),
|
||||
required=False)
|
||||
password = forms.RegexField(
|
||||
label=_("Password"),
|
||||
widget=forms.PasswordInput(render_value=False),
|
||||
@ -125,7 +127,9 @@ class CreateUserForm(BaseUserForm):
|
||||
class UpdateUserForm(BaseUserForm):
|
||||
id = forms.CharField(label=_("ID"), widget=forms.HiddenInput)
|
||||
name = forms.CharField(label=_("User Name"))
|
||||
email = forms.EmailField(label=_("Email"))
|
||||
email = forms.EmailField(
|
||||
label=_("Email"),
|
||||
required=False)
|
||||
password = forms.RegexField(
|
||||
label=_("Password"),
|
||||
widget=forms.PasswordInput(render_value=False),
|
||||
|
Loading…
x
Reference in New Issue
Block a user