{% extends "base-user.html" %} {% block title %}Accounts{% endblock %} {% block body %}
Accounts list Add mailbox
{% if return %}
{% endif %} {% for account in accounts %} {% endfor %}
Name Email Quota Status Created Actions
{{ account['name'] }} {{ account['username'] }} {{ account['quota'] == 0 ? 'Unlimited' : (account['quota'] / 1024000) }}{{ account['quota'] != 0 ? 'MBs' : ''}} {{ account['active'] == 1 ? 'Active' : 'Disabled' }} {{ account['created'] }} Edit Delete
{% endblock %}