{% 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 metadata_checks %} {% for group, checks in metadata_checks|groupby('metadata.group') %} {% for check in checks|sort(attribute='metadata.name') %} {% set loop_changed = loop.changed(group) %} {% if loop_changed %} {% endif %} {{ visualize_check_result(check) }} {% endfor %} {% endfor %}
Metadata group Metadata checks Result
{{ group|capitalize }} {{ get_metadata_value(metadata, group)}} {{ check.metadata.name }} {{ info_popover(check.metadata.short_help_text) }}
{% endif %} {% if univariate_checks %} {% for kpi, checks in univariate_checks|groupby('metadata.kpi') %} {% for check in checks|sort(attribute='metadata.name') %} {% if loop.changed(kpi) %} {% endif %} {{ visualize_check_result(check) }} {% endfor %} {% endfor %}
Quality KPI Series checks Event frames Result
{{ kpi|capitalize }}{{ check.metadata.name }} {{ info_popover(check.metadata.short_help_text) }} {% if check.metadata.event_frame_types %} {% endif %}
{% endif %} {% endblock series_content %}