Event: {{ data.event.title }} ({{ data.event.idEvent }})
Date: {{ data.event.startOn| date('Y-M-d') }} to {{ data.event.endOn | date('Y-M-d') }}
{% if is_granted('ROLE_USER') %}
{% for role, participants in data.participants %}
{{ role }}
{% for participant in participants %}
{% if participant.title != "" %}
{{ participant.title }}
{% endif %}
{{ participant.fname | title ~' '~ participant.sname|upper}} ({{ participant.idInd }})
{% if participant.jobtitle != "" %}
{{ participant.jobtitle }}
{% endif %}
{% if participant.dept != "" %}
{{ participant.dept }}
{% endif %}
{% if participant.instName != "" %}
{{ participant.instName}}
{% endif %}
{% if participant.instNameEng != ""
and participant.instNameEng != participant.instName
%}
{{ participant.instNameEng}}
{% endif %}
{% if participant.address != "" %}
{{ participant.address | raw}}
{% endif %}
{% if app.user %}
{% if participant.tel != "" %}
Tel: {{ participant.tel }}
{% endif %}
{% if participant.email1 is defined
and participant.email1 !=""
%}
Email1: {{ participant.email1 }}
{% endif %}
{% if participant.email2 is defined
and participant.email2 !=""
and participant.email1 != participant.email2
%}
Email2: {{ participant.email2 }}
{% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% else %}
Sorry, you need to login to see this list.
{% endif %}