{% extends "base.html" %} {% block title %}Projects{% endblock %} {% block content %}
{% if active_full_scan and active_project %}{% include "projects/partials/scan_async_poll.html" with scan_run=active_full_scan project=active_project %}{% endif %}
{% if projects %}

{{ current_count }} project{{ current_count|pluralize }} · Gateway apps appear here when they connect

{% for project in projects %}

{{ project.name }}

{{ project.get_project_type_display }} {% if project.gateway_agent_key %} {{ project.gateway_agent_key|truncatechars:40 }} {% elif project.repository_url %} {{ project.repository_url|truncatechars:40 }} {% elif project.local_path %} {{ project.local_path|truncatechars:40 }} {% endif %}
{% with conn=project.connection_status %} {{ conn }} {% endwith %} Edit
{% csrf_token %}

Delete project?

{% if project.is_gateway_app %} {{ project.name }} will be removed from Projects and Agents, including its runtime findings and traces. It will reappear if the app connects through the gateway again. {% else %} {{ project.name }}, its scans, and all static findings will be removed. This cannot be undone. {% endif %}

{% endfor %}
{% else %}

No projects yet. Add a project above, or connect an app through the EEG gateway — it will show up here automatically.

{% endif %} {% endblock %}