{% extends "admin/base_site.html" %} {% load i18n %} {% load translations %} {% load check_links %} {% 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 %} {% if checks %}

{% trans "System checks" %}

{% for check in checks %} {% 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." %}

{% endif %}
{% endblock %}