{% extends 'layouts/base.html' %} {% load i18n %} {% load static %} {% load ooi_extra %} {% block content %} {% include 'header.html' %}
{% include 'partials/notifications/notifications_block.html' %}

{% translate 'Findings' %}

{% blocktranslate trimmed with observed_at|date as date %} An overview of all findings KAT found on {{ date }}. Each finding relates to an object. Click a finding for additional information. {% endblocktranslate %}

{% include 'partials/findings_list_toolbar.html' %} {% translate 'Object list' as filter_title %} {% include 'partials/ooi_list_filters.html' with title=filter_title %}
{% for finding in ooi_list %} {% spaceless %} {% endspaceless %} {% endfor %}
{% translate 'Finding' %} {% translate 'Finding Type' %} {% translate 'Object Type' %} {% translate 'Tree' %} {% translate 'Graph' %} {% translate 'Details' %}
{{ finding.human_readable }} {{ finding.finding_type.human_readable }} {{ finding.ooi.class_ }} {% translate 'Tree' %} {% translate 'Graph' %}
{% translate 'Object' %}:
{{ finding.ooi.human_readable }}
{% include 'partials/finding_occurrence_definition_list.html' %}
{% include 'partials/findings_list_pagination.html' %}
{% endblock %} {% block html_at_end_body %} {{ block.super }} {% endblock %}