{% 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') }} 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' }}

{{ leads.getTotalItemCount }} Leads Found
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}