Skip to content

Commit c03da11

Browse files
committed
Use the exact same "no selection" wording.
- Legacy-Id: 516
1 parent 3ad123c commit c03da11

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/mailinglists/forms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ class ListReqStep1(forms.Form):
4444
('movenon', 'Move existing non-WG email list to selected domain above'),
4545
('closenon', 'Close existing non-WG email list at selected domain above'),
4646
), widget=forms.RadioSelect())
47-
group = forms.ModelChoiceField(queryset=IETFWG.objects.all().filter(status=IETFWG.ACTIVE).select_related(depth=1).order_by('acronym.acronym'), required=False, empty_label="-- Select Working Group")
47+
group = forms.ModelChoiceField(queryset=IETFWG.objects.all().filter(status=IETFWG.ACTIVE).select_related(depth=1).order_by('acronym.acronym'), required=False, empty_label="--Select Working Group")
4848
domain_name = forms.ChoiceField(choices=DOMAIN_CHOICES, required=False, widget = forms.Select(attrs={'onChange': 'set_domain(this)'}), initial='ietf.org')
49-
list_to_close = forms.ModelChoiceField(queryset=ImportedMailingList.objects.all(), required=False, empty_label="-- Select List To Close")
49+
list_to_close = forms.ModelChoiceField(queryset=ImportedMailingList.objects.all(), required=False, empty_label="--Select Mailing List")
5050
def mail_type_fields(self):
5151
field = self['mail_type']
5252
# RadioSelect() doesn't pass its attributes through to the <input>

0 commit comments

Comments
 (0)