{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "File system with quotas" %}{% endblock %} {% block content %}

{% trans "List of file systems" %}

{% for fs in filesystems %} {% endfor %}
{% trans "Filesystem" %} {% trans "Used space" %}
{{fs.fs}} {{fs.percentage}}
{% endblock %}