tap/app/views/orders/_order.html.erb

7 lines
188 B
Plaintext
Raw Normal View History

2014-11-09 21:53:39 +00:00
<li id="order-<%= order.id %>">
<span class="products"><%= order.products %></span>
<span class="timestamp">
Posted <%= time_ago_in_words(order.created_at) %> ago.
</span>
2014-11-23 20:12:31 +00:00
</li>