<%= @party.name %>

<% if @party.image.present? %>
<%= image_tag @party.image, class: "w-full h-96 object-cover" %>

Event Details

<%= @party.venue_name %>
<%= @party.start_time.strftime("%B %d, %Y at %I:%M %p") %>
<% end %>

Description

<%= @party.description %>

Location: <%= @party.venue_address %>
Date: <%= @party.start_time.strftime("%B %d, %Y") %>

Available Tickets

<% @party.ticket_types.each do |ticket_type| %> <% sold_out = ticket_type.quantity <= ticket_type.tickets.count %> <% remaining = ticket_type.quantity - ticket_type.tickets.count %> <%= render 'components/ticket_card', { id: ticket_type.id, name: ticket_type.name, description: ticket_type.description, price_cents: ticket_type.price_cents, quantity: ticket_type.quantity, sold_out: sold_out, remaining: remaining } %> <% end %> <%= render 'components/ticket_card', { name: "Early Bird Special", description: "Limited time offer - discounted price for early purchasers", price_cents: 1999, quantity: 100, sold_out: true, remaining: 0 } %>

Total: 0 tickets

0.00