We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e61e4f0 commit 3ade3e4Copy full SHA for 3ade3e4
1 file changed
ietf/community/rules.py
@@ -34,7 +34,7 @@ def get_documents(self):
34
return Document.objects.filter(type='draft', states__slug='active').filter(group__acronym=self.value).distinct()
35
36
def options(self):
37
- return [(i.acronym, "%s — %s"%(i.acronym, i.name)) for i in Group.objects.filter(type='wg', state='active').distinct().order_by('name')]
+ return [(i.acronym, "%s — %s"%(i.acronym, i.name)) for i in Group.objects.filter(type='wg', state='active').distinct().order_by('acronym')]
38
39
def show_value(self):
40
try:
0 commit comments