diff --git a/app/templates/outofdate.html b/app/templates/outofdate.html
index e732e30..ee4e5aa 100644
--- a/app/templates/outofdate.html
+++ b/app/templates/outofdate.html
@@ -85,7 +85,20 @@
{{ missing|length }} packages not found in other distros:
{% for s in missing %}
- {{ s.realname }}{{ ", " if not loop.last else '' }}
+ {{ s.realname }}
+ {%- if s.vulnerabilities %}
+
+ ⚠
+
+
+ {% for vuln in s.vulnerabilities %}
+ - {{ vuln.id }} ({{ vuln.severity }})
+ {% endfor %}
+
+
+
+ {% endif -%}
+ {{ ", " if not loop.last else '' }}
{% endfor %}