{% extends "base.html" %} {% from "partials/snippet.html" import render_detail %} {% set source_contexts = source_contexts | default({}) %} {% set message_contexts = message_contexts | default({}) %} {% block title %}Findings · shipgate{% endblock %} {% block content %}

Findings

Run {{ run.id[:8] }} · {{ run.branch }} · suite {{ run.suite_id }} · Back to overview

Code findings

{% if total %}

Showing {{ showing_from }}–{{ showing_to }} of {{ total }}

{% endif %}
{% if not findings %}
No code findings matched these filters for this run.
{% else %}
{% for finding in findings %} {% if source_contexts.get(finding.id) %} {{ render_detail(source_contexts[finding.id]) }} {% elif message_contexts.get(finding.id) %} {{ render_detail(message_contexts[finding.id]) }} {% endif %} {% endfor %}
Severity Check Rule Location Message
{% if prev_page_url or next_page_url %}
{% if prev_page_url %} ← Previous {% else %} {% endif %} Page {{ page }} of {{ total_pages }} {% if next_page_url %} Next → {% else %} {% endif %}
{% endif %} {% endif %}

Tools that could not run

{% if not tool_failures %}

No tool failures for this run{% if check_id or severity %} with these filters{% endif %}.

{% else %}
{% for finding in tool_failures %} {% if message_contexts.get(finding.id) %} {{ render_detail(message_contexts[finding.id]) }} {% endif %} {% endfor %}
Severity Check Tool Rule Message
{% endif %}
{% endblock %}