Commit 770707fdf8dae330b59af3ef14ee93460c810746

Authored by Sergio Oliveira
1 parent d9a7dc25

not allowing users to update their usernames

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/accounts/forms.py
... ... @@ -52,7 +52,7 @@ class UserUpdateForm(UserForm):
52 52  
53 53 class Meta:
54 54 model = User
55   - fields = ('username', 'first_name', 'last_name',
  55 + fields = ('first_name', 'last_name',
56 56 'institution', 'role', 'twitter', 'facebook',
57 57 'google_talk', 'webpage')
58 58  
... ...