{% extends "base.html.twig" %} {% block title %}Accounts{% endblock %} {% block content %}

Accounts

Actions: List accounts | Create account

List of accounts

Filter:

{% if accountList %} {% for account in accountList -%} {% endfor %} {% else %} {% endif %}
Username Domain Aliases Active Home directory Memo Created Last modified
{{ account.getUsername() }} {{ account.getDomain() }} {{ account.getAliasCount() }} {{ account.isActive() ? 'Yes' : 'No' }} vmail/{{ account.getHomeDir() }} {{ account.getMemo() }} {{ account.getCreatedAt() | date }} {{ account.getModifiedAt() | date }}
No accounts found.
{% endblock %}