{% extends "page.html" %} {% block title %} {{ _('Status') }} {% endblock %} {% block breadcrumb_content %}
  • Status
  • {% endblock %} {% macro report_grid(report_list) %}
    {% for item in report_list %}
    {{ item.label }} {{ item.value }} {% if item.help %}
    {{ item.help }}
    {% endif %}
    {% endfor %}
    {% endmacro %} {% block pre_primary %} {% asset 'ckanext-status/main' %}

    Status

    Last updated: {{ updated_at.strftime('%Y-%m-%d %H:%M:%S') }}
    {% if h.status_enable_html() %} {{ h.status_get_message()|safe }} {% else %} {{ h.status_get_message() }} {% endif %}
    {{ report_grid(reports['_root']) }} {% for group, group_reports in reports.items() if group != '_root' %}

    {{ group }}

    {{ report_grid(group_reports) }} {% endfor %}
    {% endblock %}