{% extends 'base.html.twig' %} {% block title %}Users – Rise Mailer{% endblock %} {% block stylesheets %} {% endblock %} {% block body %}
| User | Role | Status | Today's Emails | Daily Limit | Actions |
|---|---|---|---|---|---|
|
{{ user.displayName|first|upper }}
{{ user.displayName }}
{{ user.email }}
|
{% if 'ROLE_ADMIN' in user.roles %} Admin {% elseif 'ROLE_MANAGER' in user.roles %} Manager {% else %} User {% endif %} |
{% if user.isActive %}
Active
{% else %}
Inactive
{% endif %}
{% if user.isVerified %}
Verified
{% else %}
Unverified
{% endif %}
|
{{ emailsToday[user.id] ?? 0 }} / {{ user.dailyEmailLimit }} |
|
{% if app.user.userIdentifier != user.email %}
{% endif %}
|
| No users found. | |||||
| Permission | Admin | Manager | User |
|---|---|---|---|
| {{ row[0] }} | {% for i in 1..3 %}{% if row[i] %} {% else %} {% endif %} | {% endfor %}