We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7488ade commit 1b50432Copy full SHA for 1b50432
1 file changed
ietf/help/views.py
@@ -25,12 +25,9 @@ def state_index(request):
25
26
def state(request, doc, type=None):
27
if type:
28
- debug.show('type')
29
streams = [ s.slug for s in StreamName.objects.all() ]
30
- debug.show('streams')
31
if type in streams:
32
type = "stream-%s" % type
33
34
slug = "%s-%s" % (doc,type) if type else doc
35
statetype = get_object_or_404(StateType, slug=slug)
36
states = State.objects.filter(used=True, type=statetype).order_by('order')
0 commit comments