Sha256: 38bab0a4adf00e152b51491e8fc1dbb0c0ca64bbdd1d2e9edb6965b4c17dc6b0

Contents?: true

Size: 818 Bytes

Versions: 30

Compression:

Stored size: 818 Bytes

Contents

<% page_title 'orders' %>

<div class='page-header'>
  <h1 class='ns-page-title'><%= t(:orders) %></h1>
  <div class='clear'></div>
</div>

<table class="table">
  <thead>
    <tr>
      <th>Order number</th>
      <th>Amount</th>
      <th>Payment Status</th>
      <th>Ordered at</th>
      <th>Shipped at</th>
    </tr>
  </thead>
  <tbody>
    <% @orders.each do |order| %>
      <tr>
        <td> <%= link_to order.number, admin_order_path(order) %> </td>
        <td> <%= number_to_currency(order.total_amount) %> </td>
        <td>
          <%= display_payment_status(order) %>
          &nbsp;
          <%= icon_for_order_payment(order) %>
        </td>
        <td><%= order.created_at.to_s(:long) %></td>
        <td><%= display_shipping_status(order) %></td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
nimbleshop_core-0.0.23 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.21 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.20 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.19 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.17 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.16 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.15 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.14 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.14.rc2 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.14.rc1 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.13 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.12 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.11 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.10 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.9 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.8 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.7 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.5 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.4.beta1 app/views/admin/orders/index.html.erb
nimbleshop_core-0.0.4 app/views/admin/orders/index.html.erb