{% extends "layout.twig" %} {% block content %}

{{ 'Логи приложения' | trans }}

{{ 'Просмотр, поиск и управление файлами логов' | trans }}

{% if log_files | length > 0 %}
{{ 'Скачать' | trans }}
{% endif %}
{% if user and user.role == 'admin' %}
{% endif %}

{{ 'Файлы логов' | trans }}

{% if log_files | length > 0 %} {% for file in log_files %}
{{ file.name }}
{{ file.size_formatted }}
{{ file.modified_formatted }}
{% endfor %} {% else %}
{{ 'Логи не найдены' | trans }}
{% endif %}
{% if selected_file %}

{{ 'Файл:' | trans }} {{ selected_file }}

{{ 'Размер:' | trans }} {{ file_size | default(0) | bytes_format }} {{ 'Строк:' | trans }} {{ line_count | number_format(0, '.', ' ') }}

{{ 'Содержание логов' | trans }}

{{ log_content }}
{% else %}
{{ 'Выберите файл логов для просмотра' | trans }}
{% endif %}
{% endblock %}