{% extends "base.html" %} {% block title %}Cloud Storage · SD RMM{% endblock %} {% block content %}

Cloud Storage

Master controls for SD Secure Cloud — allocate and adjust each person’s storage, add or remove accounts, all from here. New people get an emailed link to set their own password. Open the full cloud →

{% if request.query_params.get('saved') %}
Saved.
{% endif %} {% if request.query_params.get('err') %}
{{ request.query_params.get('err') }}
{% endif %} {% if err %}
{{ err }}
{% endif %} {% if users %} {% for u in users %} {% endfor %}
UserEmailUsageAllocatedSet quota
{{ u.display }}
{{ u.id }} {% if not u.enabled %} disabled{% endif %}
{{ u.email or '—' }}
{{ u.used_h }} {% if u.pct %}({{ u.pct }}%){% endif %}
{{ u.quota_h }}
{% if u.id not in ('sdadmin','svcstorage') %}
{% endif %}
{% elif not err %}

No cloud accounts yet.

{% endif %}

Add a person

Quota examples: 50 GB, 500 MB, 2 TB, or none for unlimited.
{% endblock %}