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 6c42a39 commit 5b12d23Copy full SHA for 5b12d23
validation/views.py
@@ -569,17 +569,18 @@ def advanced_search_results(request, language):
569
"analysis": analysis,
570
"status": status_choice,
571
"kind": kind,
572
- "semantic": semantic,
573
"exact": exact,
574
"lemma": lemma,
575
- "quality": quality,
576
"semantic_class": semantic,
577
"semantic-class-source": semantic_class_source,
578
}
579
)
580
for speaker in speakers:
581
query.appendlist("speaker-options", speaker)
582
+ for q in quality:
+ query.appendlist("quality", q)
583
+
584
paginator = Paginator(all_matches, 5)
585
page_no = request.GET.get("page", 1)
586
phrases = paginator.get_page(page_no)
0 commit comments