{% extends "Global/layout.html.twig" %}
{% set pagetitle = 'My cart' | trans %}
{% block title %}{{pagetitle}}{% endblock %}
{% block content %}
{% set navigation = [{"dashboard_index": "Dashboard"|trans,"current":(pagetitle)}] %}
{% include "Global/navigation.html.twig" with navigation %}
{% if app.user.cartElements|length %}
{% include 'Global/message.html.twig' with { type: 'warning',icon: 'fas fa-info', message: "Your tickets are not reserved until checkout, the quantity you intend to buy might not be available if you do not proceed to checkout right away"|trans } %}
{{ app.user.getTicketsInCartQuantitySum }} {{ "tickets found in your cart"|trans }}
{% else %}
{% include "Global/message.html.twig" with { icon: "fas fa-shopping-cart", type: "info", message: ('Your cart is empty'|trans) } %}
{% endif %}