{% extends "page.html" %} {% block title %}Usage{% endblock %} {% block stylesheet %} {{ super() }} {% endblock %} {% block main %}

Usage

View your current resource usage and quota

{% if enable_storage %}
{% if storage_data.error is defined %}

Home storage

{{ storage_data.error }}

{% else %} {% if storage_data.percentage >= 90 %} {% else %} {% endif %}

Home storage

{{ "%.1f"|format(storage_data.usage_gb) }} GiB used / {{ "%.1f"|format(storage_data.quota_gb) }} GiB quota
= 90 %} style="color: #ef4444;"{% endif %}>{{ "%.1f"|format(storage_data.quota_gb - storage_data.usage_gb) }} GiB remaining
= 90 %} style="color: #ef4444;"{% endif %}>{{ "%.1f"|format(storage_data.percentage) }}%
Last updated:
{% endif %}
{% endif %} {% if enable_compute %}
{% if compute_data.0.error is defined %}

Compute

{{ compute_data.0.error }}

{% else %}

Compute

{% if compute_data | length > 1 %} {% endif %}
{% for result in compute_data %}
{{ "%.1f"|format(result.usage) }} {{ result.unit }} used / {{ "%.1f"|format(result.quota) }} {{ result.unit }} quota over the last {{ result.window }} days
= 90 %} style="color: #ef4444;"{% endif %}>{% if (result.quota - result.usage) < 0 %}{{ "%.1f"|format(0) }}{% else %}{{ "%.1f"|format(result.quota - result.usage) }}{% endif %} {{ result.unit }} remaining
= 90 %} style="color: #ef4444;"{% endif %}>{{ "%.1f"|format(result.percentage) }}%
Last updated:
{% endfor %}
{% endif %}
{% endif %}
{% if footer_note %} {% endif %}
{% endblock %} {% block script %} {% endblock %}