Commit de5f9a515e841be926b0efb279d4626688089dc1

Authored by Zambom
1 parent 011eeff3

Adding show_email field to register form

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
users/forms.py
... ... @@ -52,7 +52,7 @@ class RegisterUserForm(Validation):
52 52  
53 53 class Meta:
54 54 model = User
55   - fields = ['email', 'username', 'last_name', 'social_name', 'image',]
  55 + fields = ['email', 'username', 'last_name', 'social_name', 'image', 'show_email', ]
56 56  
57 57 class ProfileForm(Validation):
58 58 password = forms.CharField(label=_('Password'), widget = forms.PasswordInput, required = False)
... ...