diff --git a/web/core/views.py b/web/core/views.py index 0b1b58e..d80f3c7 100644 --- a/web/core/views.py +++ b/web/core/views.py @@ -391,7 +391,7 @@ def stats_page(request): for subj in Entry.objects.exclude(subject="").values_list("subject", flat=True): for tag in [t.strip() for t in subj.split(",") if t.strip()]: counts[tag.lower()] += 1 - top_subjects = [{"name": n.title(), "count": c} for n, c in counts.most_common(10)] + top_subjects = [{"name": n.title(), "count": c} for n, c in counts.most_common(20)] return render( request,