{% extends "base.html"%} {% block pagebody %} {% if not show %}
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 %}
    delete
    {% endif %}
  • {% endfor %}
{% else %}
Non hai ancora acquistato dei biglietti
{% endif %}
{% else %}
Acquista Biglietto per {{film}}
theaters{{show.theaterName}}
today {{show.date.strftime("%d/%m/%Y")}}
access_time {{show.date.strftime("%H:%M")}}
Lista posti disponibili
{% with messages = get_flashed_messages(category_filter=["seats-error"]) %} {% if messages[0] %} {{messages[0]}} {% endif %} {% endwith %}
{% for seat in seats %}
{% endfor %}
{{show.price}}
 euro_symbol
{% endif %} {% endblock %}