Doctor
{% if doctor.ok %}
ok
{% else %}
issues found
{% endif %}
{% if doctor.checks %}
Checks
{% for check in doctor.checks %}
-
{{ "ok" if check.ok else "fail" }}
{{ check.name }}
{% if check.message %}
{{ check.message }}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}