{{ knp_pagination_render(results) }}
{{ knp_pagination_sortable(results, 'Username', 'u.username') }}
{{ knp_pagination_sortable(results, 'First Name', 'u.firstName') }}
{{ knp_pagination_sortable(results, 'Last Name', 'u.lastName') }}
{{ knp_pagination_sortable(results, 'Calendar Timezone', 'u.calendarTimezone') }}
{{ knp_pagination_sortable(results, 'Profile', 'u.profile') }}
{{ knp_pagination_sortable(results, 'Chargeability', 'c.description') }}
{% for user in results %}
{{ user.username }} |
{{ user.firstName }} |
{{ user.lastName }} |
{{ user.calendarTimezone }} |
{{ user.user.profileName }} |
{% if is_granted('ROLE_ADMIN') %}
Change Password
{% endif %}
|
{% endfor %}
{# Commented out AngularJS code
{% verbatim %}
...
{% endverbatim %}
#}
{% if paginator is defined and paginator == true %}
{{ knp_pagination_render(results) }}
{% endif %}