Skip to content

Instantly share code, notes, and snippets.

@juque
Created July 5, 2021 10:35
Show Gist options
  • Save juque/0f78d782b2406feebecf66fc348f6731 to your computer and use it in GitHub Desktop.
Save juque/0f78d782b2406feebecf66fc348f6731 to your computer and use it in GitHub Desktop.
<h1>Dashboard#index</h1>
<p><a title="Salir" href="/auth/logout">Logout</a></p>
<h2>Pedidos recientes</h2>
<ul class="orders_list">
<% @orders.each do |order| %>
<li class="order status_<%= order.status %>">
<h3><%= order.code %></h3>
<span class="total"><%= order.net_total %></span>
<span class="units"><%= order.units %> units</span>
<span class="products">products: <%= order.line_items.map(&:product_title).join(', ') %></span>
</li>
<% end %>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment