{% extends "scanpipe/base.html" %} {% block title %}ScanCode.io: {{ project.name }} - Messages{% endblock %} {% block content %}
{% include 'scanpipe/includes/navbar_header.html' %}
{% include 'scanpipe/includes/breadcrumb.html' with linked_project=True current="Messages" %} {% 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 message in object_list %} {% empty %} {% endfor %}
{{ message.severity }} {{ message.model }}
{% if message.description|length < 100 %} {{ message.description }} {% else %} {{ message.description }} {% endif %}
{% if message.details.resource_path %} {% endif %} {% if message.details.package_uuid %} {% endif %} {% for key, value in message.details.items %} {{ key }}: {{ value }}
{% endfor %}
{{ message.traceback }}
No messages found. Clear search and filters
{% if is_paginated %} {% include 'scanpipe/includes/pagination.html' with page_obj=page_obj %} {% endif %}
{% endblock %}