diff options
author | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2017-12-06 16:48:31 -0500 |
---|---|---|
committer | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2017-12-07 15:14:01 -0500 |
commit | 9742d5a8d6ee629e99581dc69c491a04f6a2f2ac (patch) | |
tree | 6974d839f5018adcc36dd19232c2aefb37888d0c /src/account/forms.py | |
parent | 42763c659dd029cbe2c88e2292f638fd0735825e (diff) |
Integrate Initial Email Support
JIRA: None
Integrate ability for users to change email presented to admins
with field initially filled with user's Jira associated email address
This amend takes into account a streamlining change
suggested by Parker Berbarian
Change-Id: I677ce669f200e5cad70c198737118f0b7925bac5
Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Diffstat (limited to 'src/account/forms.py')
-rw-r--r-- | src/account/forms.py | 2 |
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') |