{% extends 'Admin/base.html.twig' %} {% block title %} OceanExpert | Add Participant from file {% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% include('navbarlogin.html.twig') %}
{% block sidebar %} {% include('Admin/adminSidebar.html.twig') %} {% endblock %}
{% block content %}
Add Participant from file to Event : {{ data.event.title }}
{% if data.fileerror is defined and data.fileerror != "" %}
{{ data.fileerror }}
{% endif %} {% if data.participants is not defined or data.participants | length == 0 %}
Click here to download excel template to upload the participant details
{% endif %}
{% if data.participants is defined and data.participants | length > 0 %}
{% for expert in data.participants %} {% if expert.status == 1 %} {% else %} {% endif %} {% endfor %}
Name Email Country Action
{{ expert.fname ~ " "~ expert.sname }} {{ expert.email }} {{ expert.country }}
{{ expert.fname ~ " "~ expert.sname }} {{ expert.email }} {{ expert.instCountry }}
{##} {% endif %}
{% endblock %}
{% include "footer.html.twig" %} {% endblock %}