{% extends "admin/base_site.html" %} {% load i18n admin_extras %} {% block content %}

{% trans "System Reports" %}

{% celery_feature_enabled as celery_enabled %} {% if celery_enabled %} {% endif %}
{% trans "Name" %} {% trans "Purpose" %}
{% trans "Startup Report" %} {% trans "Review start and upgrade script activity with timestamps." %}
{% trans "Upgrade Report" %} {% trans "Check automated upgrade schedules and trigger update checks." %}
{% trans "Uptime Report" %} {% trans "Visualize node uptime and downtime over common timeframes." %}
{% trans "Suite Services Report" %} {% trans "Review statuses for all systemd services configured on this node." %}
{% trans "SQL Report" %} {% trans "Execute SQL with sigils resolved, benchmark runtime, and save queries for reuse." %}
{% trans "Dashboard Rules" %} {% trans "Review dashboard rule results across all models and jump to their configurations." %}
{% trans "NGINX Report" %} {% trans "Compare the expected NGINX site definition with the file on disk." %}
{% trans "Changelog Report" %} {% trans "Review git commits grouped by release with on-demand loading." %}
{% trans "Celery Report" %} {% trans "Inspect Celery worker status and task visibility." %}
{% if not celery_enabled %}

{% trans "Celery support is not enabled on this node." %}

{% endif %}
{% for field in system_fields %} {% endfor %}
{% trans "System field" %} {% trans "Sigil" %} {% trans "Current values" %}
{{ field.label }} {{ field.sigil }} {% if field.field_type == "boolean" %} {% if field.value %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %} {% elif field.field_type == "features" %} {% if field.value %}
    {% for feature in field.value %}
  • {{ feature.display }} {% if feature.expected or feature.actual %} ( {% if feature.expected and feature.actual %} {% trans "expected and actual" %} {% elif feature.expected %} {% trans "expected" %} {% else %} {% trans "actual" %} {% endif %} ) {% endif %}
  • {% endfor %}
{% else %} {% trans "No features detected" %} {% endif %} {% elif field.field_type == "databases" %} {% if field.value %}
    {% for database in field.value %}
  • {{ database.alias }} {% if database.engine %} — {{ database.engine }} {% endif %} {% if database.name %} ({{ database.name }}) {% endif %}
  • {% endfor %}
{% else %} {% trans "No databases configured" %} {% endif %} {% else %} {{ field.value|default_if_none:"" }} {% endif %}
{% endblock %}