{% extends "whm/base.html" %} {% block title %}My Users{% endblock title %} {% block content %}

List of users

{% csrf_token %}
{% for myuser in users %} {% empty %} {% endfor %}
Username Login Domain Email Status Quota Disk Used Package Action
{{ myuser.username }} {% if myuser.is_active %} Login{% endif %} {{ myuser.main_domain }} {{ myuser.email }} {% if myuser.is_active %} Active {% else %} Suspended {% endif %} {% if myuser.quota == 0 %}unlimited{% else %}{{ myuser.quota }} MB{% endif %} {{ myuser.total_usage }} {{ myuser.pkg }} Manage
No domains found.
{% endblock content %} {% include "whm/footer.html" %}