+
+
+ {% if Basket.getPusher() %}
+
+ {% set user_name = '' ~ Basket.getPusher().get_display_name() ~ '' %}
+ {% trans %}
+ Received from {{ user_name }}
+ {% endtrans %}
+
+ {% endif %}
+
+
+ {% if Basket.getValidation() %}
+
+ {% set list_participants = '' %}
+ {% for Participant in Basket.getValidation().getParticipants() %}
+ {% set list_participants = list_participants ~ '
+ {{ Participant.getUser().get_display_name }}
+ ' %}
+ {% endfor %}
+ {% trans %}
+ Sent for validation to {{ list_participants }}
+ {% endtrans %}
+
+ {% endif %}
+
+ |
+