{% for check in checks %}
{% if check.passed %} {% else %} {% endif %}

{{ check.name }}

{{ check.message }}

{{ check.value }}
{% endfor %}
{% if all_passed %}

All critical checks passed! Your configuration is ready.

{% else %}

Some checks failed. Please update your configuration.

Check your environment variables or Django settings.

{% endif %}