{{ 'Back to basket list' | trans }} |
{% if not Basket.isVoteBasket() or Basket.isVoteInitiator(app.getAuthenticatedUser()) %} {% endif %} {{ Basket.getName()|length > 55 ? Basket.getName()|slice(0, 52) ~ '...' : Basket.getName() }} |
{% set user_name = '' ~ Basket.getPusher(app).get_display_name() ~ '' %} {% trans with {'%user_name%' : user_name} %}Received from %user_name%{% endtrans %}
{% set list_participants = '' %} {% for Participant in Basket.getParticipants() %} {% if list_participants != '' %} {% set list_participants = list_participants ~ ', ' %} {% endif %} {% set list_participants = list_participants ~ '' ~ Participant.getUser().getDisplayName() | e ~ '' %} {% endfor %} {% trans with {'%list_participants%' : list_participants} %}Sent for validation to %list_participants%{% endtrans %}