{% 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') }} | Assigned Dealer | Email Status |
|---|---|---|---|---|
| {{ lead.fullName }} | {{ render(controller('App\\Controller\\TerritoryRep\\LeadController::getRankStars', { 'id' : territory.id, 'lead' : lead.id })) }} | {{ lead.lastActiveDate|date('m/d/Y') }} | {% if lead.assignedDealer is not null %} {{ lead.assignedDealer }} {% endif %} | {{ lead.factoryBulkEmailStatus == true ? 'On' : 'Off' }} |