{% extends "admin/base_site.html" %} {% load static %} {% block title %}{{ title }}{% endblock %} {% block extrahead %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if not is_rotational %} 🔴 LIVE {% endif %} Download

File: {{ log_file.name }} {% if is_rotational %} rotational {% endif %}

{% if is_rotational and log_file.parent_group %}

Parent Group: {{ log_file.parent_group }}

{% endif %}

Size: {{ log_file.size|filesizeformat }}

Modified: {{ log_file.modified|date:"Y-m-d H:i:s" }}

Total Lines: {{ total_lines }}

Total Entries: {{ total_entries }}

Showing: Lines {{ start_line }} - {{ end_line }} ({{ log_lines|length }} entries)

{% if is_rotational %}

Type: Historical log file (no live updates)

{% endif %}
{% if log_lines %}
{% for line in log_lines %} {% endfor %}
Line(s) Level Timestamp Module Message Action
{{ line.line_range }} {% if line.is_multiline %} 📄 {% endif %} {{ line.level }} {{ line.timestamp }} {% if line.logger %} {{ line.logger }} {% else %} - {% endif %}
{{ line.content }}
{% if line.is_long %}
Content truncated...
{% endif %}
{% if line.is_long or line.is_multiline %} {% endif %}
Page {{ current_page }} of {{ total_pages }}
{% if current_page > 1 %} First Previous {% endif %} {% if current_page < total_pages %} Next Last {% endif %}
{% else %}

No log entries found

The log file appears to be empty or could not be read.

{% endif %} {% endblock %}