Skip to content

Commit a0329f9

Browse files
committed
Merged in [12320] from rcross@amsl.com:
Change non-working-group-session edit view to use same group options available when creating the non-working-group-sessions. - Legacy-Id: 12337 Note: SVN reference [12320] has been migrated to Git commit f29100a
2 parents 2af415c + f29100a commit a0329f9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ietf/secr/meetings/forms.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@ class NonSessionEditForm(forms.Form):
152152
name = forms.CharField(help_text='Name that appears on the agenda')
153153
short = forms.CharField(max_length=32,label='Short Name',help_text='Enter an abbreviated session name (used for material file names)')
154154
location = forms.ModelChoiceField(queryset=Room.objects)
155-
group = forms.ModelChoiceField(queryset=Group.objects.filter(acronym__in=('edu','ietf','iepg','tools','iesg','iab','iaoc')),
155+
group = forms.ModelChoiceField(
156+
queryset=Group.objects.filter(type__in=['ietf','team'],state='active'),
156157
help_text='''Select a group to associate with this session. For example:<br>
157158
Tutorials = Education,<br>
158159
Code Sprint = Tools Team,<br>

0 commit comments

Comments
 (0)