{% extends "base.html" %}
{% load i18n %}
{% load translations %}
{% load check_links %}
{% load humanize %}
{% block breadcrumbs %}
{% trans "Manage" %}
{% trans "Performance report" %}
{% endblock %}
{% block content %}
{% if errors %}
{% documentation_icon 'admin/install' 'production' right=True %}
{% trans "Configuration errors" %}
{% trans "Last occurrence" %} |
{% trans "Name" %} |
{% trans "Message" %} |
|
{% for error in errors %}
{{ error.timestamp }} |
{{ error.name }} |
{{ error.message }} |
|
{% endfor %}
{% endif %}
{% if checks %}
{% documentation_icon 'admin/install' 'production' right=True %}
{% trans "System checks" %}
{% trans "Name" %} |
{% trans "Message" %} |
{% trans "Documentation" %} |
{% for check in checks %}
{{ check.id }} |
{{ check.msg }} |
{% check_link check %} |
{% endfor %}
{% endif %}
{% if not checks and not errors %}
{% trans "Congratulations, your setup seems to work." as msg %}
{% show_message "success" msg %}
{% endif %}
{% documentation_icon 'admin/install' 'celery' right=True %}
{% trans "Celery queues" %}
{% for name, length in queues %}
{{ name }} |
{{ length|intcomma }} |
{% endfor %}
{% endblock %}