{% extends "flow.html" %} {% set step = "sanity" %} {% block main %}

Input sanity

the checks prove internal consistency; this page asks whether the inputs look like what they claim to be
{% if error %}
Hold on. {{ error }}
{% endif %} {% if not by.red and not by.amber and not by.info %}
Clean. No findings; the inputs look like what they claim to be.
{% endif %} {% for f in by.red %}
RED · {{ f.id }}. {{ f.title }} {% if f.detail %}
{{ f.detail }}
{% endif %}
{% endfor %} {% for f in by.amber %}
AMBER · {{ f.id }}. {{ f.title }} {% if f.detail %}
{{ f.detail }}
{% endif %}
{% endfor %} {% for f in by.info %}
info · {{ f.id }}. {{ f.title }} {% if f.detail %}
{{ f.detail }}
{% endif %}
{% endfor %}
{% if by.amber %} {% endif %} {% if by.red %}
the overrule is recorded in the run's provenance, with your findings attached
{% endif %}
{% endblock %}