{% extends "scanpipe/base.html" %} {% block title %}ScanCode.io: {{ project.name }} - Errors{% endblock %} {% block content %}
{% include 'scanpipe/includes/navbar_header.html' %}
{% include 'scanpipe/includes/breadcrumb.html' with linked_project=True current="Errors" %} {% 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 error in object_list %} {% endfor %}
{{ error.model }}
{% if error.message|length < 100 %} {{ error.message }} {% else %} {{ error.message }} {% endif %}
{% if error.details.codebase_resource_pk and error.details.codebase_resource_path %} {% endif %} {% for key, value in error.details.items %} {{ key }}: {{ value }}
{% endfor %}
{{ error.traceback }}
{% if is_paginated %} {% include 'scanpipe/includes/pagination.html' with page_obj=page_obj %} {% endif %}
{% endblock %}