{% extends "layout.html" %} {% block title %}{{ _('Users & Hosts') }}{% endblock %} {% block content %}
| Username | Home Directory | Disk Usage | Actions |
|---|---|---|---|
|
|
{{ user.home_dir }} |
{% set percent = 0 %}
{% if user.quota_limit_mb > 0 %}
{% set percent = ((user.current_disk_usage / 1024 / 1024) / user.quota_limit_mb * 100)|int %}
{% endif %}
{{ (user.current_disk_usage / 1024 / 1024)|round(2) }} MB
/ {% if user.quota_limit_mb > 0 %}{{ user.quota_limit_mb }} MB{% else %}∞{% endif %}
|
{% if user.is_suspended %} {% else %} {% endif %} |
|
No users found. Create one to get started. |
|||