{% extends "scanpipe/base.html" %} {% block title %}ScanCode.io: {{ project.name }} - Dependencies{% endblock %} {% block content %}
{% include 'scanpipe/includes/navbar_header.html' %}
{% include 'scanpipe/includes/breadcrumb.html' with linked_project=True current="Dependencies" %} {% include 'scanpipe/includes/search_field.html' with extra_class="is-small" %}
{% include 'scanpipe/includes/pagination_header.html' %} {% include 'scanpipe/includes/filters_breadcrumb.html' with filterset=filter only %}
View the dependency tree {% include 'scanpipe/includes/list_view_thead.html' %} {% for dependency in object_list %} {% empty %} {% endfor %}
{# CAUTION: Avoid relying on get_absolute_url to prevent unnecessary query triggers #} {{ dependency.purl }} {% if dependency.is_vulnerable %} {% endif %} {{ dependency.type }} {{ dependency.scope }} {{ dependency.extracted_requirement }} {{ dependency.is_runtime }} {{ dependency.is_optional }} {{ dependency.is_resolved }} {{ dependency.is_direct }} {% if dependency.for_package %} {# CAUTION: Avoid relying on get_absolute_url to prevent unnecessary query triggers #} {{ dependency.for_package.purl }} {% endif %} {% if dependency.resolved_to_package %} {# CAUTION: Avoid relying on get_absolute_url to prevent unnecessary query triggers #} {{ dependency.resolved_to_package.purl }} {% endif %} {% if dependency.datafile_resource %} {# CAUTION: Avoid relying on get_absolute_url to prevent unnecessary query triggers #} {{ dependency.datafile_resource.name }} {% endif %} {{ dependency.datasource_id }}
No Dependencies found. Clear search and filters
{% if is_paginated %} {% include 'scanpipe/includes/pagination.html' with page_obj=page_obj %} {% endif %}
{% endblock %}