{% 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 %}Series checks | Result | Event frames |
---|---|---|
{{ check.metadata.name }} {{ info_popover(check.metadata.short_help_text) }}
|
{{ visualize_check_result(check) }}
{% if check.result > 0 %}
{% if check.metadata.event_frame_types|count > 0 %}
{% if check.metadata.event_frame_types|count == 1 %}
List event frames
{% else %}
|
{% else %}
- | {% endif %}
The checks in these modules did not run.
Module | Reason | {% for not_ran_check in not_ran_checks %}
---|---|
{{not_ran_check.check_name}} | {{not_ran_check.message}} |