summaryrefslogtreecommitdiffstats
path: root/dashboard/src/account/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/src/account/forms.py')
-rw-r--r--dashboard/src/account/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/src/account/forms.py b/dashboard/src/account/forms.py
index 7653e2b..3b9c627 100644
--- a/dashboard/src/account/forms.py
+++ b/dashboard/src/account/forms.py
@@ -17,6 +17,6 @@ from account.models import UserProfile
class AccountSettingsForm(forms.ModelForm):
class Meta:
model = UserProfile
- fields = ['company', 'ssh_public_key', 'pgp_public_key', 'timezone']
+ fields = ['company', 'email_addr', 'ssh_public_key', 'pgp_public_key', 'timezone']
timezone = forms.ChoiceField(choices=[(x, x) for x in pytz.common_timezones], initial='UTC')