{% extends 'dashboards/_base.html' %} {% load i18n unfold %} {% block extrahead %} {% if sanity_state == "scheduled" or sanity_state == "running" %} {% endif %} {% endblock %} {% block welcome-msg %}
{% if is_nav_sidebar_enabled and not is_popup %} dock_to_right {% endif %} {% include "unfold/helpers/header_back_button.html" %}

{% spaceless %} {% trans "Bitcaster" %} chevron_right {% trans "Console" %} chevron_right {% trans "Tools" %} chevron_right {% trans "Sanity Check" %} {% endspaceless %}

{% endblock %} {% block content %} {% component "unfold/components/container.html" %}
{% csrf_token %} {% if sanity_state == "running" %} {% elif sanity_state == "scheduled" %} {% else %} {% endif %}
{% if has_results %} {% for category, data in results.items %} {% if data %}
{{ category|title }}: Run at {{ data.timestamp }} - Checked: {{ data.checked }} - Valid: {{ data.valid }} - Invalid: {{ data.invalid|length }}
{% endif %} {% endfor %} {% if components %}
{% for component, items in components.items %}
{{ component }} ({{ items|length }})
    {% for item in items %}
  • {{ item.source }} - {% if item.link %} {{ item.label }} {% else %} {{ item.label }} {% endif %} - {{ item.detail }} {% if item.fix %} Fix Issue {% endif %}
  • {% endfor %}
{% endfor %}
{% else %}
All checks passed.
{% endif %} {% else %}
No results yet. Run a sanity check from the Tools page.
{% endif %}
{% endcomponent %} {% endblock %}