Sha256: cc5cd82fc2c47043bb7049438017d6f9265ecd25d300c3d20d0c21bcb718773d
Contents?: true
Size: 566 Bytes
Versions: 12
Compression:
Stored size: 566 Bytes
Contents
<table> <tr> <td>Order Number:</td> <td><%=@order.number%></td> </tr> <tr> <td>User:</td> <td><%= link_to h(@order.user.login), profile_path(@order.user) %></td> </tr> <tr> <td>Amount:</td> <td><%= @order.amount_price %></td> </tr> <tr> <td>Order Type:</td> <td><%= @order.order_type %></td> </tr> <tr> <td>Date:</td> <td><%= format_date(@order.created_at) %></td> </tr> </table> <table> <%= render :partial => 'admin/order_transactions/order_transaction', :collection => @order.transactions %> </table>
Version data entries
12 entries across 12 versions & 1 rubygems