zhongrj
2025-11-25 b89962006164a462404b79a738bee8cbb6d7fe7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% load i18n %}
{% load settings %}
 
{% quota_exceeded_grace_period as when %}
 
{% if user.profile.has_exceeded_quota_cached %}
    {% with total=user.profile.quota|disk_size used=user.profile.used_quota_cached|disk_size %}
    <div class="alert alert-warning alert-dismissible">
        <i class="fas fa-info-circle"></i> {% blocktrans %}The disk quota is being exceeded ({{ used }} of {{ total }} used). The most recent tasks will be automatically deleted {{ when }}, until usage falls below {{ total }}.{% endblocktrans %}
    </div>
    {% endwith %}
{% elif user.profile.quota == 0 %}
    <div class="alert alert-warning alert-dismissible">
        <i class="fas fa-info-circle"></i> {% blocktrans %}Your account does not have a storage quota. Any new task will be automatically deleted {{ when }}{% endblocktrans %}
    </div>
{% endif %}