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

Zip Workspace

{{ user_email }}

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

Back to Dashboard
{% 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 zip files are stored here for download.

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

No export zip files yet.

{% endif %}
{% endblock %}