From e6e5bc74ad4f7e3f233f3e49fa4dff08ce05abdf Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 14 Dec 2024 10:53:14 +0100 Subject: [PATCH] security: list all the packages missing vuln metadata It's a bit of a wall of text right now, but we need to show them somewhere so we can fix them. --- app/templates/security.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/templates/security.html b/app/templates/security.html index 07491ab..871592d 100644 --- a/app/templates/security.html +++ b/app/templates/security.html @@ -49,6 +49,13 @@ {% endfor %} + +
{{ unknown|length }} packages are missing metadata for vulnerability scanning:
+ {% for s in unknown %} + {{ s.realname }} + {{ ", " if not loop.last else '' }} + {% endfor %} +