<.shop_layout {layout_assigns(assigns)} active_page="contact">

Your orders

<%= if @lookup_email do %>

Orders for {@lookup_email}

<% end %>
<%= cond do %> <% is_nil(@orders) -> %>

This link has expired or is invalid.

Head back to the <.link navigate="/contact">contact page to request a new one.

<% @orders == [] -> %>

No orders found for that email address.

If something doesn't look right, <.link navigate="/contact">get in touch.

<% true -> %>
<%= for order <- @orders do %> <.link navigate={"/orders/#{order.order_number}"} class="order-summary-card">

{order.order_number}

{Calendar.strftime(order.inserted_at, "%-d %B %Y")}

{format_order_status(order.fulfilment_status)}
<% end %>
<% end %>