{% extends "admin/base_site.html" %} {% load static %} {% block title %}{{ title }}{% endblock %} {% block extrahead %} {% endblock %} {% block sidebar %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ title }}

{% if log_files %}
{% for log_file in log_files %}

{{ log_file.name }}

{% if log_file.type == 'rotational_group' %} {{ log_file.file_count }} file{{ log_file.file_count|pluralize }} {% endif %}

Size: {{ log_file.size|filesizeformat }}

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

Path: {{ log_file.path }}

{% if log_file.type == 'rotational_group' %}

Type: Rotational log group

{% endif %}
{% if log_file.type == 'rotational_group' %}
View all {{ log_file.file_count }} file{{ log_file.file_count|pluralize }}
{% endif %}
{% endfor %}
{% else %}

No log files found

Please check your LOG_VIEWER_FILES and LOG_VIEWER_FILES_DIR settings.

{% endif %}
{% endblock %}