Your IP : 216.73.217.79


Current Path : /var/www/v3.cesa.co.za/src/ContactBundle/Resources/views/Admin/
Upload File :
Current File : /var/www/v3.cesa.co.za/src/ContactBundle/Resources/views/Admin/message.recipients.html.twig

{% extends '@SonataAdmin/CRUD/base_list_field.html.twig' %}

{% block field%}
    <ul>
        {% set count = 1 %}
        {% for recipient in object.messageRecipient|slice(0, 5) %}
            <li>
                {{ recipient }}
                {% if recipient.messageError is not null %}
                    {% for err in recipient.messageError %}
                        - Error: {{ err.text }}
                    {% endfor %}
                {% endif %}
            </li>
            {% set count = count + 1 %}
        {% endfor %}
    </ul>
{% endblock %}