We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 447525d commit a288401Copy full SHA for a288401
1 file changed
ietf/secr/sreq/forms.py
@@ -20,8 +20,8 @@
20
NUM_SESSION_CHOICES = (('','--Please select'),('1','1'),('2','2'))
21
# LENGTH_SESSION_CHOICES = (('','--Please select'),('1800','30 minutes'),('3600','1 hour'),('5400','1.5 hours'), ('7200','2 hours'),('9000','2.5 hours'))
22
LENGTH_SESSION_CHOICES = (('','--Please select'),('1800','30 minutes'),('3600','1 hour'),('5400','1.5 hours'), ('7200','2 hours'))
23
-WG_CHOICES = list( Group.objects.filter(type__in=('wg','rg','ag'),state__in=('bof','proposed','active')).values_list('acronym','acronym').order_by('acronym')) # type: ignore
24
-WG_CHOICES.insert(0,('','--Select WG(s)'))
+WG_CHOICES = list( Group.objects.filter(type__in=('wg','rg','ag'),state__in=('bof','proposed','active')).values_list('acronym','acronym').order_by('acronym')) # type:ignore
+WG_CHOICES.insert(0,('','--Select WG(s)')) # type:ignore
25
26
# -------------------------------------------------
27
# Helper Functions
0 commit comments