{% extends "scanpipe/base.html" %} {% load humanize %} {% block title %}ScanCode.io: {{ project.name }} - Packages{% endblock %} {% block content %}
{% include 'scanpipe/includes/navbar_header.html' %}
{% include 'scanpipe/includes/breadcrumb.html' with linked_project=True current="Packages" %} {% 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 package in object_list %} {% if display_compliance_alert %} {% endif %} {% empty %} {% endfor %}
{# CAUTION: Avoid relying on get_absolute_url to prevent unnecessary query triggers #} {{ package.package_url }} {% if package.is_vulnerable %} {% endif %} {{ package.declared_license_expression }} {{ package.compliance_alert }} {{ package.copyright|truncatechars:150|linebreaksbr }} {{ package.primary_language }} {% if package.resources_count %} View {{ package.resources_count|intcomma }} resources {% endif %}
No Packages found. Clear search and filters
{% if is_paginated %} {% include 'scanpipe/includes/pagination.html' with page_obj=page_obj %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}