{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% endif %} {% endwith %}

Dashboard of {{username}}

You are managing {{ quota_usage }}GB out of {{ quota_gb }}GB.

{% set r = 40 %} {% set c = (2 * 3.141592653589793 * r) %} {% if quota_gb and quota_gb > 0 %} {% set used = quota_usage %} {% set pct = (used / quota_gb) if quota_gb > 0 else 0 %} {% else %} {% set used = 0 %} {% set pct = 0 %} {% endif %} {% if pct >= 0.9 %} {% set stroke_color = '#DF2935' %} {% elif pct >= 0.6 %} {% set stroke_color = '#FDCA40' %} {% else %} {% set stroke_color = '#3772FF' %} {% endif %}
{% for file in files %} {% endfor %}
Filename Code Reusable Download Delete
{{ file.file.rsplit('_', 1)[0] }} {{ file.code }} {{ 'Yes' if file.reusable else 'No' }} {% if file.reusable %} Download {% else %} Download and Delete {% endif %} {% if file.reusable %} Delete {% endif %}