{% extends "admin/base_site.html" %}
{% load i18n %}
{% load translations %}
{% load check_links %}
{% block title %}{% trans "Performance report" %}{% endblock %}
{% block breadcrumbs %}
{% trans "Performance overview" %}
{% if errors %}
{% trans "Configuration errors" %}
{% trans "Last occurrence" %} |
{% trans "Name" %} |
{% trans "Message" %} |
|
{% for error in errors %}
{{ error.timestamp }} |
{{ error.name }} |
{{ error.message }} |
|
{% endfor %}
{% 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 django_errors %}
{% trans "System checks" %}
{% trans "Name" %} |
{% trans "Message" %} |
{% trans "Documentation" %} |
{% for check in django_errors %}
{{ check.id }} |
{{ check.msg }} |
{% check_link check %} |
{% endfor %}
{% endif %}
{% trans "Performance report" %}
{% trans "Check" %} |
{% trans "Status" %} |
{% trans "Result" %} |
{% trans "Documentation" %} |
{% for check in checks %}
{{ check.0 }} |
{{ check.3 }} |
{% admin_boolean_icon check.1 %} |
{% trans "Documentation" %} |
{% endfor %}
{% endblock %}