{% extends "base.html" %} {% block title %}Preflight — Ready to go public?{% endblock %} {% block head %} {{ super() if super }} {% endblock %} {% block content %}

Preflight — {% if overall=='ok' %}ready to go public{% elif overall=='warn' %}ready with caveats{% else %}not ready{% endif %}

{{ counts.ok }} ok · {{ counts.warn }} warn · {{ counts.fail }} fail · ran in {{ elapsed_ms }} ms
{% for c in checks %}
{{ c.status | upper }}
{{ c.name }}
{% if c.detail %}
{{ c.detail }}
{% endif %} {% if c.fix and c.status != 'ok' %}
→ {{ c.fix }}
{% endif %}
{% endfor %}
{% endblock %}