{% extends 'layout.html' %} {% from 'include/empty.html' import empty %} {% from 'components/log.html' import pre_code %} {% set breadcrumbs = breadcrumb_page('admin') + breadcrumb_page(self) %} {% block content %}

{{ active_page.label }}

{# Log file selector #}
{% set active_name = name %} {% for name, filename in log_files.items() %} {{ filename.split("/") | last }} {% endfor %}
{% if data %}
{# Scroll down #} {# Download link #}
{% endif %}
{% if not log_files %}

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

{% elif data %} {% if data.count('\n') >= 1999 %}
{% trans %}Notice: To prevent performance issues, only the last 2000 lines of the log are displayed.{% endtrans %}
{% endif %} {# Scroll up #}
{% elif name or date %} {# Log file is empty. #}

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

{% else %} {# Log file not selected #}

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

{% endif %} {% endblock %}