Skip to content

Commit c9cc9ff

Browse files
committed
Upped the permitted number of search results for the /stream/ise/ page (and friends) from 200 to 1000. Fixes issue ietf-tools#2527.
- Legacy-Id: 15281
1 parent c7a9c2f commit c9cc9ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1179,7 +1179,7 @@ def stream_documents(request, acronym):
11791179
stream = StreamName.objects.get(slug=acronym)
11801180

11811181
qs = Document.objects.filter(states__type="draft", states__slug__in=["active", "rfc"], stream=acronym)
1182-
docs, meta = prepare_document_table(request, qs)
1182+
docs, meta = prepare_document_table(request, qs, max_results=1000)
11831183
return render(request, 'group/stream_documents.html', {'stream':stream, 'docs':docs, 'meta':meta, 'editable':editable } )
11841184

11851185
def stream_edit(request, acronym):

0 commit comments

Comments
 (0)