tap/app/views/orders/_order.html.erb
2015-09-14 20:26:16 +02:00

14 lines
219 B
Plaintext

<tr>
<td class="order_date">
<%= order.created_at.strftime("%d %b %Y at %H:%M") %>
</td>
</tr>
<tr>
<td>
<%= order.to_sentence %>
</td>
<td>
<%= euro_from_cents(order.price_cents) %>
</td>
</tr>