Change label and help text of the secondary mail addresses in the merge form. Fixes #1037

- Legacy-Id: 5715
This commit is contained in:
Emilio A. Sánchez López 2013-05-09 09:15:26 +00:00
parent ad5c2ddae9
commit 42fe4ccf16

View file

@ -307,7 +307,8 @@ class EditNomcomForm(BaseNomcomForm, forms.ModelForm):
class MergeForm(BaseNomcomForm, forms.Form):
secondary_emails = custom_fields.MultiEmailField(label="Secondary email address (remove this):")
secondary_emails = custom_fields.MultiEmailField(label="Secondary email addresses",
help_text="Provide a comma separated list of email addresses. Nominations already received with any of these email address will be moved to show under the primary address")
primary_email = forms.EmailField(label="Primary email address",
widget=forms.TextInput(attrs={'size': '40'}))