Setup check
{% if status == "ok" %}
Everything needed to run is configured. You can log in from the
dashboard.
{% else %}
Something needed to run is missing. Fix the items marked below,
then reload this page. You do not need to be logged in to see this.
{% endif %}
{% for c in checks %}
-
{% if c.ok and c.get("warn") %}
note
{% elif c.ok %}
ok
{% elif c.critical %}
needs setup
{% else %}
optional
{% endif %}
{{ c.key.replace("_", " ") }}
{{ c.detail }}
{% endfor %}