aboutsummaryrefslogtreecommitdiffstats
path: root/src/account/forms.py
diff options
context:
space:
mode:
authorJack Morgan <jack.morgan@intel.com>2017-12-14 01:18:58 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-12-14 01:18:58 +0000
commite0edcd4c99f6bcdda93c198a1e5829d1e929e0ec (patch)
tree9840f0616b3768711ddb3109bce5c5756748f46e /src/account/forms.py
parent1b9e76a483822a830a1b67acb817467ee907b93c (diff)
parent9742d5a8d6ee629e99581dc69c491a04f6a2f2ac (diff)
Merge "Integrate Initial Email Support"
Diffstat (limited to 'src/account/forms.py')
-rw-r--r--src/account/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/account/forms.py b/src/account/forms.py
index 7653e2b..3b9c627 100644
--- a/src/account/forms.py
+++ b/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')