Created
July 5, 2021 10:35
-
-
Save juque/0f78d782b2406feebecf66fc348f6731 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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