{% extends 'base.html.twig' %} {% block title %}Pool Yard List | {{ parent() }}{% endblock %} {% block body %}
| Name | # of assigned Pools | # of stock Pools | # of Managers |
|---|---|---|---|
| {{ yard.name }} | {{ render(controller('App\\Controller\\FactoryAdmin\\PoolYardController::getCountOfPools', { 'poolYard' : yard, 'choice' : 'assigned' })) }} | {{ render(controller('App\\Controller\\FactoryAdmin\\PoolYardController::getCountOfPools', { 'poolYard' : yard, 'choice' : 'stock' })) }} | {{ yard.managers|length }} |