{% extends "base.html" %} {% block title %}My Audits — Counterscarp{% endblock %} {% block content %}

My Audits

{{ total }} audit{{ "s" if total != 1 else "" }} completed

{% if scan_credits is defined and scan_credits > 0 %}
{{ scan_credits }} scan{{ 's' if scan_credits != 1 else '' }} remaining
{% elif scan_credits is defined and scan_credits == 0 %}
No scans remaining — Buy more
{% endif %} {% if audits %} {% for a in audits %} {% endfor %}
Project Date Findings Risk Score Actions
{{ a.project_name }} {{ a.timestamp_display }} {% if a.severity_counts.CRITICAL %} C {{ a.severity_counts.CRITICAL }} {% endif %} {% if a.severity_counts.HIGH %} H {{ a.severity_counts.HIGH }} {% endif %} {% if a.severity_counts.MEDIUM %} M {{ a.severity_counts.MEDIUM }} {% endif %} {% if a.severity_counts.LOW %} L {{ a.severity_counts.LOW }} {% endif %} {% if not a.severity_counts.CRITICAL and not a.severity_counts.HIGH and not a.severity_counts.MEDIUM and not a.severity_counts.LOW %} {% endif %} {{ a.risk_score }} View {% if a.has_report %} Download {% endif %}
{% if total_pages > 1 %} {% endif %} {% else %}

No audits yet. Upload a contract to get started.

Upload a Contract
{% endif %}
{% endblock %}