Lista biglietti acquistati
{% if tickets and ((tickets | length) > 0) %}
{% for ticket in tickets %}
-
movie {{ticket.filmName}}
euro_symbol {{ticket.price}}
today {{ticket.showDate.strftime("%d/%m/%Y %H:%M")}}
theaters {{ticket.theater}}
airline_seat_recline_normal {{ticket.seat}}
Acquistato: {{ticket.date.strftime("%d/%m/%Y %H:%M")}}
{% if ticket.isDeletable %}
{% endif %}
{% endfor %}
{% else %}
Non hai ancora acquistato dei biglietti
{% endif %}