{% if basket.getValidation() %}
{{ basket.getValidation().getValidationString(app, app['phraseanet.user']) }}
{% for choice in basket_element.getValidationDatas() %}
{% if basket.getValidation().getParticipant(app['phraseanet.user'], app).getCanSeeOthers() or choice.getParticipant().getUser(app) == app['phraseanet.user'] %}
{% if choice.getAgreement() == true %}
{% set classuser = 'agree' %}
{% elseif choice.getAgreement() is null %}
{% set classuser = '' %}
{% else %}
{% set classuser = 'disagree' %}
{% endif %}
{% set participant = choice.getParticipant().getUser(app) %}
- {{participant.get_display_name()}}
{% endif %}
{% endfor %}
{% endif %}