{% extends "base.html" %} {% load static %} {% load i18n %} {% block head %} {{block.super}} {% endblock head %} {% block title %}{% blocktrans with fs=fs %}Quota for {{fs}}{% endblocktrans %}{% endblock %} {% block content %}

{% blocktrans with fs=fs %}Quota for {{fs}}{% endblocktrans %}

You can edit the quotas by selecting the cell with the mouse. Pressing "ENTER" or double cliking the cell will allows you to edit the value, and arrow keys allows to navigate through the table.

{% for u in quota_user %} {% endfor %}
{% trans "User" %} {% trans "Disk used" %} {% trans "Disk quota soft" %} {% trans "Disk quota hard" %} {% trans "File used" %} {% trans "File quota soft" %} {% trans "File quota hard" %}
{{u.name}} {{u.disk_used}} {{u.disk_soft}} {{u.disk_hard}} {{u.file_used}} {{u.file_soft}} {{u.file_hard}}
{% for g in quota_group %} {% endfor %}
{% trans "Group" %} {% trans "Disk used" %} {% trans "Disk quota soft" %} {% trans "Disk quota hard" %} {% trans "File used" %} {% trans "File quota soft" %} {% trans "File quota hard" %}
{{g.name}} {{g.disk_used}} {{g.disk_soft}} {{g.disk_hard}} {{g.file_used}} {{g.file_soft}} {{g.file_hard}}
{% endblock %}