From: Michael Tremer Date: Mon, 26 Jan 2026 14:26:26 +0000 (+0000) Subject: dbl: Only who pending reports X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=31ae96bdf64fc3f38fce0ca45dd93a9348c78a0d;p=ipfire.org.git dbl: Only who pending reports Signed-off-by: Michael Tremer --- diff --git a/src/web/dbl.py b/src/web/dbl.py index 9f047c09..550d58d9 100644 --- a/src/web/dbl.py +++ b/src/web/dbl.py @@ -56,8 +56,8 @@ class ListReportsHandler(base.AnalyticsMixin, BaseHandler): if not list: raise tornado.web.HTTPError(404, "Could not find list '%s'" % slug) - # Fetch some recent reports - reports = await list.get_reports(limit=25) + # Fetch any open reports + reports = await list.get_reports(open=True) # Render the page self.render("dbl/lists/reports.html", list=list, reports=reports)