{% extends 'base.html.twig' %} {% block title %}Lead List | {{ parent() }}{% endblock %} {% block body %} {# @var leads \Knp\Component\Pager\Pagination\PaginatorInterface #}

Leads



{{ leads.getTotalItemCount }} Leads Found
{% for lead in leads %} {# @var lead \App\Entity\Lead #} {% endfor %}
{{ 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\\FactoryAdmin\\LeadController::getRankStars', { 'lead' : lead.id })) }} {{ lead.lastActiveDate|date('m/d/Y') }} {% if lead.assignedDealer is not null %} {{ lead.assignedDealer }} {% endif %} {{ lead.factoryBulkEmailStatus == true ? 'On' : 'Off' }}
{{ leads.getTotalItemCount }} Leads Found
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}