{% extends "scanpipe/base.html" %} {% block title %}ScanCode.io: {{ project.name }} - Resources{% endblock %} {% block content %}
{% include 'scanpipe/includes/navbar_header.html' %}
{% include 'scanpipe/includes/breadcrumb.html' with linked_project=True current="Resources" %} {% 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 resource in object_list %} {% if display_compliance_alert %} {% endif %} {% empty %} {% endfor %}
{% if resource.is_dir %} {{ resource.path }} {% else %} {# CAUTION: Avoid relying on get_absolute_url to prevent unnecessary query triggers #} {{ resource.path }} {% endif %} {{ resource.status }} {{ resource.type }} {% if resource.is_file %} {{ resource.size|filesizeformat|default_if_none:"" }} {% endif %} {{ resource.name }} {{ resource.extension }} {{ resource.programming_language }} {{ resource.mime_type }} {{ resource.tag }} {{ resource.detected_license_expression }} {{ resource.compliance_alert }}
    {% for package in resource.discovered_packages.all %}
  • {{ package }}
  • {% endfor %}
No Resources found. Clear search and filters
{% if is_paginated %} {% include 'scanpipe/includes/pagination.html' with page_obj=page_obj %} {% endif %}
{% endblock %}