{% extends "portal_base.html" %} {% block title %}Archive Workspace - OTB Cloud{% endblock %} {% block portal_content %}

Archive Workspace

{{ user_email }}

Stage selected files here, then create an archive in your exports area.

Back to Dashboard View LTS
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ category|capitalize }}: {{ message }}
{% endfor %}
{% endif %} {% endwith %}

Staged Files

These are temporary working copies only.

{{ staged_files|length }} staged
{% if staged_files %}
    {% for item in staged_files %}
  • {{ item.name }}
    {{ "{:,}".format(item.size_bytes) }} bytes • {{ item.path }}
  • {% endfor %}
{% else %}

No files are currently staged.

{% endif %}

Exports

Completed archive files are stored here for download or transfer to LTS.

{{ export_files|length }} exports
{% if export_files %}
    {% for item in export_files %}
  • {{ item.name }}
    {{ "{:,}".format(item.size_bytes) }} bytes • {{ item.path }}
  • {% endfor %}
{% else %}

No export archive files yet.

{% endif %}

LTS Storage

Long-term stored archives.

{% endblock %}