{% extends "securityaudit/base.html" %} {% block securityaudit_content %} {% if stale_count %}
{{ stale_count }} stale audit run{{ stale_count|pluralize }} detected (running for more than 30 minutes with no progress).
{% csrf_token %}
{% endif %}
Active Security Audit Jobs
{% for run in runs %} {% empty %} {% endfor %}
ID Target Type Status Automated Progress Last Activity Records
#{{ run.id }} {{ run.target }} {{ run.target.get_target_type_display }} {{ run.get_status_display }} {% if run.is_stale %} stale {% endif %} {{ run.automated|yesno:"Yes,No" }} {{ run.progress_percent }}% — {{ run.progress_message }} {{ run.started_at|default:run.created_at }} {% if run.has_findings %}findings{% endif %} {% if run.has_counterparties %}{% if run.has_findings %}/{% endif %}counterparties{% endif %} {% if not run.has_findings and not run.has_counterparties %} no records yet {% endif %}
No active or incomplete security audit jobs.
{% endblock %}