{% extends 'base.html.twig' %} {% block title %}Territory List | {{ parent() }}{% endblock %} {% block body %}
| Name | # of Active Dealers | # of Prospective Dealers | # of Reps |
|---|---|---|---|
| {{ territory.name }} | {{ render(controller('App\\Controller\\FactoryAdmin\\TerritoryController::getCountOfDealers', { 'territory' : territory, 'choice' : 'nonProspective' })) }} | {{ render(controller('App\\Controller\\FactoryAdmin\\TerritoryController::getCountOfDealers', { 'territory' : territory, 'choice' : 'prospective' })) }} | {{ territory.bRUsers|length }} |