DistroPropaganda/code/rails31/depot_s/app/views/orders/show.html.erb
2018-11-24 13:20:20 +01:00

25 lines
319 B
Text

<p id="notice"><%= notice %></p>
<p>
<b>Name:</b>
<%= @order.name %>
</p>
<p>
<b>Address:</b>
<%= @order.address %>
</p>
<p>
<b>Email:</b>
<%= @order.email %>
</p>
<p>
<b>Pay type:</b>
<%= @order.pay_type %>
</p>
<%= link_to 'Edit', edit_order_path(@order) %> |
<%= link_to 'Back', orders_path %>