{% 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 %}
{% include 'scanpipe/includes/list_view_thead.html' %} {% for dependency in object_list %} {% endfor %}
{{ dependency.purl }} {{ dependency.type }} {{ dependency.extracted_requirement }} {{ dependency.scope }} {{ dependency.is_runtime }} {{ dependency.is_optional }} {{ dependency.is_resolved }} {% if dependency.for_package %} {{ dependency.for_package.purl }} {% endif %} {% if dependency.datafile_resource %} {{ dependency.datafile_resource.name }} {% endif %} {{ dependency.datasource_id }}
{% if is_paginated %} {% include 'scanpipe/includes/pagination.html' with page_obj=page_obj %} {% endif %}
{% endblock %}