{% extends 'D2CustomerBundle::base_admin.html.twig' %} {% block head_script_extra %} {% endblock head_script_extra %} {% block page_header %}
{{ knp_pagination_sortable(customer_list, 'Status', 'u.enabled') }} | {{ knp_pagination_sortable(customer_list, 'Username', 'u.username') }} | {{ knp_pagination_sortable(customer_list, 'Firstname', 'c.firstname') }} | {{ knp_pagination_sortable(customer_list, 'Lastname', 'c.lastname') }} | {{ knp_pagination_sortable(customer_list, 'Display Name', 'c.display_name') }} | {{ knp_pagination_sortable(customer_list, 'Email', 'u.email') }} | {{ knp_pagination_sortable(customer_list, 'Country', 'ct.country') }} | {{ knp_pagination_sortable(customer_list, 'Last Login', 'u.LastLogin') }} | |
---|---|---|---|---|---|---|---|---|
![]() |
{{ entity.username|trim }} | {% if entity.getCustomer is not null %}{{ entity.getCustomer.getFirstname|trim }}{% endif %} | {% if entity.getCustomer is not null %}{{ entity.getCustomer.getLastname|trim }}{% endif %} | {% if entity.getCustomer is not null %}{{ entity.getCustomer.getDisplayName|trim }}{% endif %} | {{ entity.email|trim }} | {% if entity.getCustomer is not null %}{{ entity.getCustomer.Country|trim }}{% endif %} | {{ entity.lastLogin|date("Y/m/d") }} |
|