{% extends 'base.html' %} {% block content %}

{{ t('system_health') }}

{{ health.overall }}
{% for name,item in health.items.items() %}{% endfor %}
ComponentStatusDetailSolution
{{ name }}{% if item.ok %}OK{% else %}ERROR{% endif %}{{ item.detail }}{% if not item.ok %}{{ item.solution }}{% endif %}
{% endblock %}