{% extends 'base.html.twig' %} {% block title %}Pool Yard List | {{ parent() }}{% endblock %} {% block body %}

Pool Yards



{% for yard in yards %} {% endfor %}
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 }}
{% endblock %}