{% extends "base.html" %} {% block content %}

{{ pkg_name }} v{{ pkg_version }}

Scans ({{ scans|length }})

{% for s in scans %} {% endfor %}
IDRepoStatusFindingsTime
#{{ s.id }} {{ s.repository }} {{ s.status }} {% if s.flagged %}{{ s.total_findings }}{% else %}0{% endif %} {{ s.started_at.strftime('%Y-%m-%d %H:%M') if s.started_at }}

Findings ({{ findings|length }})

{% if findings %} {% for f in findings|sort(attribute='severity', reverse=true) %}
[{{ f.severity }}] {{ f.rule }} {% if f.location %} @ {{ f.location }}{% endif %}

{{ f.message }}

{% if f.code %}
{{ f.code }}
{% endif %}
{% endfor %} {% else %}

No findings — package looks clean.

{% endif %} {% endblock %}