{% extends "base.html" %} {% block title %}Discord Archives - {{ server_name }}{% endblock %} {% block content %}

Server Archives - {{ server_name }} ({{ server_id }})

{% if files %}

Archive Files

{{ files|length }} files
{% for file in files %}
{{ file.category }} / {{ file.channel }}

{{ file.name }}

Created: {{ file.date_created }}
{{ file.format }} {{ (file.size / 1024)|round(1) }} KB Download
{% endfor %}
{% else %}

No archives available

No message archives have been created for this server yet.

Use the Discord bot's !archive or !archive_all commands to create archives.

{% endif %} {% endblock %}