{% extends 'base.html.twig' %} {% block title %}Lead List | {{ parent() }}{% endblock %} {% block body %} {# @var leads \Knp\Component\Pager\Pagination\PaginatorInterface #}
| {{ knp_pagination_sortable(leads, 'Name', 'lead.firstName') }} | Rating | {{ knp_pagination_sortable(leads, 'Last Activity', 'lead.lastActiveDate') }} | Email Status |
|---|---|---|---|
| {{ lead.fullName }} | {{ render(controller('App\\Controller\\DealerAdmin\\LeadController::getRankStars', { 'id' : dealer.id, 'lead' : lead.id })) }} | {{ lead.lastActiveDate|date('m/d/Y') }} | {{ lead.dealerEmailStatus == true ? 'On' : 'Off' }} |