{% extends 'admin.html' %} {% from 'include/empty.html' import empty %} {% from 'components/log.html' import pre_code %} {% block title %} {% trans %}System Logs{% endtrans %} {% endblock title %} {% set admin_nav_active="logs" %} {% block content %}
{% if log_files %}
{% if data %} {# Show log file data #}
{% trans %}Notice: To prevent performance issues, only the last {{ limit }} lines of the log files are displayed.{% endtrans %} {% trans %}Show all logs{% endtrans %}
{{ pre_code(data)}} {% elif name or date %} {# Log file is empty. #} {% call empty('icon-file', _('Log file empty')) %}

{% trans %}This log file is empty. Select another log file to show it's contents.{% endtrans %}

{% endcall %} {% else %} {# Log file not selected #} {% call empty('icon-file', _('No log file selected')) %}

{% trans %}Select a log file to show it's contents.{% endtrans %}

{% endcall %} {% endif %}
{% else %} {# Log file not selected #}
{% call empty('icon-file', _('No log file available')) %}

{% trans %}The server is not configured to log in any file.{% endtrans %}

{% endcall %}
{% endif %}
{% endblock %}