{% extends "base.html" %} {% load i18n %} {% load translations %} {% load check_links %} {% block breadcrumbs %}
  • {% trans "Manage" %}
  • {% trans "Performance report" %}
  • {% endblock %} {% block content %} {% if errors %}

    {% documentation_icon 'admin/install' 'production' right=True %} {% trans "Configuration errors" %}

    {% for error in errors %} {% endfor %}
    {% trans "Last occurrence" %} {% trans "Name" %} {% trans "Message" %}
    {{ error.timestamp }} {{ error.name }}
    {{ error.message }}
    {% csrf_token %}
    {% endif %} {% if checks %}

    {% documentation_icon 'admin/install' 'production' right=True %} {% trans "System checks" %}

    {% for check in checks %} {% if not check.is_silenced %} {% endif %} {% endfor %}
    {% trans "Name" %} {% trans "Message" %} {% trans "Documentation" %}
    {{ check.id }} {{ check.msg }} {% check_link check %}
    {% endif %} {% if not checks and not errors %} {% trans "Congratulations, your setup seems to work." as msg %} {% show_message "success" msg %} {% endif %} {% endblock %}