Commit b8dc5e0ce288327f214ec6d8905c8a78f9087868
1 parent
30b0b790
Exists in
master
and in
39 other branches
Removing email from update form
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/accounts/forms.py
| ... | ... | @@ -36,7 +36,7 @@ class UserCreationForm(UserForm): |
| 36 | 36 | class UserUpdateForm(UserForm): |
| 37 | 37 | class Meta: |
| 38 | 38 | model = User |
| 39 | - fields = ('username', 'first_name', 'last_name', 'email', | |
| 39 | + fields = ('username', 'first_name', 'last_name', | |
| 40 | 40 | 'institution', 'role', 'twitter', 'facebook', |
| 41 | 41 | 'google_talk', 'webpage') |
| 42 | 42 | ... | ... |