Détails de la commande

Commande #<%= @order.id %>
<%= @order.status.titleize %>

Billets commandés

<% @tickets.each do |ticket| %>

<%= ticket.ticket_type.name %>

<%= ticket.first_name %> <%= ticket.last_name %>
Statut: <%= ticket.status.titleize %>
<%= ticket.price_euros %>€
<% end %>
Total <%= @order.total_amount_euros %>€

TVA incluse

<%= link_to seo_event_path(@order.event), class: "bg-gray-100 hover:bg-gray-200 text-gray-700 font-medium py-2 px-4 rounded-lg transition-colors" do %>
Retour à l'événement
<% end %> <% if @order.can_retry_payment? %> <%= link_to booking_summary_path(@order), class: "bg-purple-600 hover:bg-purple-700 text-white font-medium py-2 px-4 rounded-lg transition-colors" do %>
Procéder au paiement
<% end %> <% end %>