{% extends "layouts/dashboard.html" %} {% block title %}Edit User - Retoor's Cloud Solutions{% endblock %} {% block dashboard_head %} {% endblock %} {% block page_title %}Edit User Quota{% endblock %} {% block dashboard_content %}

Edit User Storage Quota

Adjust storage quota for {{ user_data.full_name }} ({{ user_data.email }}).

{% if errors %}
    {% for field, error in errors.items() %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% if success_message %}
{{ success_message }}
{% endif %}

Current Usage:

{{ user_data.storage_used_gb }} GB / {{ user_data.storage_quota_gb }} GB

{{ ((user_data.storage_used_gb / user_data.storage_quota_gb) * 100)|round(2) if user_data.storage_quota_gb > 0 else 0 }}% used

Update Quota

Cancel
{% endblock %}