{% extends "base.html" %} {% block title %}{{ project.name }}{% endblock %} {% block content %}
{% if active_full_scan %}{% include "projects/partials/scan_async_poll.html" with scan_run=active_full_scan project=project %}{% endif %}
{{ findings_summary.critical }}
Critical
{{ findings_summary.high }}
High
{{ findings_summary.medium }}
Medium
{{ findings_summary.low }}
Low

Project Details

{{ project.uuid }}
{{ project.status }}
{% if project.repository_url %}
{{ project.repository_url }}
{% endif %} {% if project.local_path %}
{{ project.local_path }}
{% endif %} {% if project.api_endpoint %}
{{ project.api_endpoint }}
{% endif %}
{% if project.auto_scan_enabled %}Enabled ({{ project.scan_schedule }}){% else %}Disabled{% endif %}
{{ project.last_scan_at|date:"M j, Y H:i"|default:"Never" }}

Recent Scans

{% if recent_scans %}
{% for scan in recent_scans %}
{{ scan.get_scan_type_display }}
{{ scan.created_at|date:"M j, H:i" }}
{% if scan.result_summary.new_findings %} {{ scan.result_summary.new_findings }} new {% elif scan.findings_count > 0 %} {{ scan.findings_count }} open {% endif %} {{ scan.status }}
{% endfor %}
{% else %}

No scans run yet.

{% endif %}
{% if project.description %}

Description

{{ project.description }}

{% endif %}

Danger Zone

Deleting a project removes all associated scans and findings. This action cannot be undone.

{% csrf_token %}
{% endblock %}