{# templates/contributor/import_review.html.twig #} {% extends 'base.html.twig' %} {% block title %}Vérification de l'import{% endblock %} {% block body %}
{{ total_count }} contributeurs trouvés dans le fichier Excel.
{{ new_count }} nouveaux contributeurs et
{{ updated_count }} contributeurs existants à mettre à jour.
| ID Ulule | Nom | Adresse | Type | Contrepartie | |
|---|---|---|---|---|---|
| {{ contributor.ululesId }} | {{ contributor.name }} | {{ contributor.email }} |
{% if contributor.deliveryAddress %}
{{ contributor.deliveryAddress }}
{% if contributor.deliveryAddress2 %}{{ contributor.deliveryAddress2 }} {% endif %}
{{ contributor.deliveryPostalCode }} {{ contributor.deliveryCity }}
{{ contributor.deliveryCountry }}
{% endif %}
|
{% if contributor.isExisting %} Mise à jour {% else %} Nouveau {% endif %} |
{% for reward in contributor.temporaryRewards %}
{{ reward.title }}
{% if reward.variation %} ({{ reward.variation }}){% endif %}
x{{ reward.quantity }}
{% endfor %}
|