{% extends "components/shell.html" %} {% block title %} Archived Files | {{ g.site_name }} {% endblock %} {% block content %}

Archive Files

{% if archive.password %} Archive password: {{archive.password}} {% elif archive.password == "" %} Archive needs password, but none was provided. Click to input {% endif %}

{% for file_name in archive.file_list %} {% if file_serving_enabled and archive.password %} {{file_name}}
{% elif file_serving_enabled and archive.password == None %} {{file_name}}
{% else %} {{file_name}}
{% endif %} {% else %} {% if archive %} Archive is empty or missing password. {% else %} File does not exist or is not an archive. {% endif %} {% endfor %} {% endblock %}