- {% if accompanying_period.requestorPerson is not null or accompanying_period.requestorThirdParty is not null %}
-
-
{{ 'Requestor'|trans({'gender': null }) }}
-
- {% if accompanying_period.requestorPerson is not null %}
-
- {% include '@ChillMain/OnTheFly/_insert_vue_onthefly.html.twig' with {
- action: 'show', displayBadge: true,
- targetEntity: { name: 'person', id: accompanying_period.requestorPerson.id },
- buttonText: accompanying_period.requestorPerson|chill_entity_render_string
- } %}
-
- {% endif %}
- {% if accompanying_period.requestorThirdParty is not null %}
-
- {% include '@ChillMain/OnTheFly/_insert_vue_onthefly.html.twig' with {
- action: 'show', displayBadge: true,
- targetEntity: { name: 'thirdparty', id: accompanying_period.requestorThirdParty.id },
- buttonText: accompanying_period.requestorThirdParty|chill_entity_render_string
- } %}
-
- {% endif %}
-
-
- {% endif %}
-
- {% if accompanying_period.participations.count > 0 %}
-
-
{{ 'Participants'|trans }}
-
- {% for p in accompanying_period.getCurrentParticipations %}
-
- {% include '@ChillMain/OnTheFly/_insert_vue_onthefly.html.twig' with {
- action: 'show', displayBadge: true,
- targetEntity: { name: 'person', id: p.person.id },
- buttonText: p.person|chill_entity_render_string
- } %}
-
- {% endfor %}
-
-
- {% endif %}
-
- {% if accompanying_period.socialIssues.count > 0 %}
-
-
{{ 'Social issues'|trans }}
-
- {% for si in accompanying_period.socialIssues %}
-
- {{ si|chill_entity_render_box }}
-
- {% endfor %}
-
-
- {% endif %}
-