{% extends "scanpipe/base.html" %} {% load static humanize %} {% block title %}ScanCode.io: {{ project.name }}{% endblock %} {% block extrahead %} {% endblock %} {% block content %}
{% include 'scanpipe/includes/navbar_header.html' %}
{% include 'scanpipe/includes/messages.html' %}
{% include 'scanpipe/includes/breadcrumb.html' %}
Created {{ project.created_date|naturaltime }} {% include "scanpipe/includes/project_actions_dropdown.html" %}
UUID {{ project.uuid }}
Work directory {{ project.work_directory }}

{% include "scanpipe/includes/project_summary_level.html" with project=project title_class="title" include_pipelines=1 only %}
{% if project.resource_count or project.package_count %} {% elif not project.runs.all %}

Add {% if not inputs_with_source %}Inputs{% endif %} and execute a pipeline to generate some results.

{% endif %}
{% include "scanpipe/includes/project_inputs.html" %}
{% include "scanpipe/includes/project_pipelines.html" %}
{% if project.extra_data %}

Project data

{{ extra_data_yaml }}
{% endif %} {% if license_clarity or scan_summary %}
{% if license_clarity %}
{% include "scanpipe/includes/license_clarity_panel.html" %}
{% endif %} {% if scan_summary %}
{% include "scanpipe/includes/scan_summary_panel.html" %}
{% endif %}
{% endif %}
{% if project.resource_count or project.package_count %}
Loading the charts...
{% endif %}
{% include 'scanpipe/includes/run_modal.html' %} {% if not project.is_archived %} {% include "scanpipe/includes/project_archive_modal.html" %} {% endif %} {% include "scanpipe/includes/project_reset_modal.html" %} {% include "scanpipe/includes/project_delete_modal.html" %} {% endblock %} {% block scripts %} {% endblock %}