{% extends "user/contributions-layout.html.twig" %} {% set pageTitle = 'votes._label'|trans %} {% block contribution_page %}

{{ 'votes._label'|trans }}

{% if votes|length > 0 %} {% for vote in votes %} {% endfor %}
{{ 'votes.element'|trans }} {{ 'votes.vote'|trans }} {{ 'votes.date'|trans }} {{ 'votes.status'|trans }}
{{ vote.element.name }} {{ ('elements.fields.voteValues_choices.' ~ vote.value)|trans({}, 'admin') }} {{ vote.createdAt|date('commons.date_format'|trans({}, 'admin'))}} {{ ('elements.fields.status_choices.' ~ vote.element.status)|trans({}, 'admin') }}
{% else %}

{{ 'votes.empty'|trans }}

{% endif %} {% endblock %}