<%= stylesheet_link_tag "admin/orders" %>

Orders


<% @orders.each do |order| %> <% if !order.product_id.nil? %> <% product = Product.find(order.product_id) %> <% else %> <% next %> <% end %> <% if order.status == "ordered" %> <% elsif order.status == "shipped" %> <% else %> <% end %> <% end %>
Order ID Product Size Color Quantity Placed At Placed By Status
<%= !order.id.nil? ? order.id : "---" %>  <%= link_to '[Status trails]', admin_order_show_order_status_trail_path(order.id), id: "show_status_trails_#{order.id}", style: "font-size: x-small" %> <%= !product.product_name.nil? ? product.product_name : "---" %> <%= !product.size.nil? ? product.size : "---" %> <%= !product.color.nil? ? product.color : "---" %> <%= !order.quantity.nil? ? order.quantity : "---" %> <%= !order.placed_at.nil? ? order.placed_at.strftime("%m-%d-%Y %I:%M%p") : "---" %> <%= !order.user_id.nil? ? User.find(order.user_id).name : "---" %>  <%= link_to '[Show Address]', admin_order_show_address_path(order.id), id: "show_address_#{order.id}", style: "font-size: x-small" %> <%= link_to 'Mark Shipped', admin_order_mark_order_shipped_path(order.id), id: "show_product_#{order.id}" %>
<%= !order.id.nil? ? order.id : "---" %>  <%= link_to '[Status trails]', admin_order_show_order_status_trail_path(order.id), id: "show_status_trails_#{order.id}", style: "font-size: x-small" %> <%= !product.product_name.nil? ? product.product_name : "---" %> <%= !product.size.nil? ? product.size : "---" %> <%= !product.color.nil? ? product.color : "---" %> <%= !order.quantity.nil? ? order.quantity : "---" %> <%= !order.placed_at.nil? ? order.placed_at.strftime("%m-%d-%Y %I:%M%p") : "---" %> <%= !order.user_id.nil? ? User.find(order.user_id).name : "---" %>  <%= link_to '[Show Address]', admin_order_show_address_path(order.id), id: "show_address_#{order.id}", style: "font-size: x-small" %> <%= link_to 'Mark Delivered', admin_order_mark_order_delivered_path(order.id), id: "show_product_#{order.id}" %>
<%= !order.id.nil? ? order.id : "---" %>  <%= link_to '[Status trails]', admin_order_show_order_status_trail_path(order.id), id: "show_status_trails_#{order.id}", style: "font-size: x-small" %> <%= !product.product_name.nil? ? product.product_name : "---" %> <%= !product.size.nil? ? product.size : "---" %> <%= !product.color.nil? ? product.color : "---" %> <%= !order.quantity.nil? ? order.quantity : "---" %> <%= !order.placed_at.nil? ? order.placed_at.strftime("%m-%d-%Y %I:%M%p") : "---" %> <%= !order.user_id.nil? ? User.find(order.user_id).name : "---" %>  <%= link_to '[Show Address]', admin_order_show_address_path(order.id), id: "show_address_#{order.id}", style: "font-size: x-small" %> Delivered