{% extends "admin/base_site.html" %} {% load tz %} {% load static %} {% block title %} Data Health Checks {% endblock %} {% block extrastyle %} {% endblock %} {% block content %}

vital_signs Data Health Checks

Checks are designed to help identify potential data integrity issues.

🔴 -> Failed
🟢 -> Passed

Results:

Number of checks executed: {{ checks|length }}
On: {% now "Y-m-d H:i:s" %}
refreshRe-run checks
{% for check in checks %}
{% if check.success %}

🟢 {{ check.name }}

{{ check.description }}

{% else %}

🔴 {{ check.name }}

{{ check.description }}


{% if check.error_message %}
{{ check.error_message }}
{% endif %} {% if check.has_fix %}
{% csrf_token %}
{% endif %}
Failing {{ check.get_object_name }}s {% for obj in check.failing_objects %}
{{ obj.id }}
{% endfor %}
{% endif %}
{% endfor %} {% endblock content %}