{% extends 'series-layout.html' %} {% macro get_metadata_value(metadata, group) %} {% if metadata.get(group) is not none %} {% if metadata[group]|count > 1 %}

({{ metadata[group]|join(', ') }})

{% else %} {% if group =='data types' %}

({% for value, label in metadata[group][0].mapping.items() %} {{ label }}: {{ value }} {% endfor %})

{% else %}

({{ metadata[group][0]|numberformat }})

{% endif %} {% endif %} {% endif %} {% endmacro %} {% block menu %} {{ series_menu('Checks') }} {% endblock %} {% block series_title %}

Checks

{% endblock %} {% block series_content %} {% if checks|count > 0 %} {% for check in checks|sort(attribute='metadata.name')|sort(attribute='result', reverse=True)|sort(attribute='metadata.data_type') %} {{ visualize_check_result(check) }} {% if check.result > 0 %} {% else %} {% endif %} {% endfor %}
Series checks Result Event frames
{{ check.metadata.name }} {{ info_popover(check.metadata.short_help_text) }}
{% if check.metadata.event_frame_types|count > 0 %} {% if check.metadata.event_frame_types|count == 1 %} List event frames {% else %} {% endif %} {% endif %} -
{% endif %} {% if not_ran_checks|count > 0 %}
Other checks

The checks in these modules did not run.

{% for not_ran_check in not_ran_checks %} {% endfor %}
Module Reason
{{not_ran_check.check_name}} {{not_ran_check.message}}
{% endif %} {% if checks|count == 0 and not_ran_checks|count == 0 %}
No checks available. Run the 'archival_sketch' module to get check results.
{% endif %} {% endblock series_content %}