{% extends "portal_base.html" %} {% block title %}Deleted Files - OTB Cloud{% endblock %} {% block portal_content %}

Deleted Files

{{ user_email }}

Deleted files are retained for up to 24 hours unless you hard-delete them immediately.

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

Deleted Files

Files here are pending retention expiry, recovery, or hard delete.

{{ files|length }} items
{% for file in files %} {% endfor %}
Name Device Size Deleted At Actions
{{ file.original_filename }}
{{ file.relative_path }}
{{ file.device_name or 'Unknown' }}
{{ file.device_type or '' }}
{{ "{:,}".format(file.size_bytes or 0) }} bytes {{ file.deleted_at }}
{% else %}

No deleted files

There are currently no files in the deleted area.

Clear
{% endif %} {% endblock %}