{% extends "admin/base_site.html" %} {% load i18n %} {% load translations %} {% block title %}{% trans "Performance report" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Performance overview" %}

{% if errors %}

{% trans "Configuration errors" %}

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

{% trans "You can safely permanently ignore errors for file formats you do not intend to use. These are usually caused by missing or outdated dependencies." %}

{% endif %}

{% trans "Performance report" %}

{% for check in checks %} {% endfor %}
{% trans "Check" %} {% trans "Status" %} {% trans "Result" %} {% trans "Documentation" %}
{{ check.0 }} {{ check.3 }} {% admin_boolean_icon check.1 %} {% trans "Documentation" %}
{% endblock %}