Sha256: 307a714925ed94e263339cee9b7447317ea65b5225b966670a34fccdb726cbef

Contents?: true

Size: 1.67 KB

Versions: 2

Compression:

Stored size: 1.67 KB

Contents

<!-- page content -->
<div class="right_col" role="main">
  <div class="">
    <div class="page-title">
      <div class="title_left">
        <h3>Orders</h3>
      </div>

      <div class="title_right">
        <div class="col-md-5 col-sm-5 col-xs-12 form-group pull-right top_search">
          <div class="input-group">
            <input type="text" class="form-control" placeholder="Search for...">
                    <span class="input-group-btn">
                              <button class="btn btn-default" type="button">Go!</button>
                          </span>
          </div>
        </div>
      </div>
    </div>
    <div class="clearfix"></div>

    <div class="row">

      <div class="col-md-12 col-sm-12 col-xs-12">
        <div class="x_panel">
          <div class="x_title">

			<p id="notice"><%= flash[:notice] %></p>

      <table class="table">
        <thead>
          <tr>
            <th>Order</th>
            <th>Date</th>
            <th>Customer</th>
            <th>Payment Status</th>
            <th>Fulfillment Status</th>
            <th>Total</th>
          </tr>
        </thead>
        <tbody>
        <% @orders.each do |order| %>
        <tr>
          <td><%= link_to "#"+order.id.to_s, seller_order_details_path(order.id) %></td>
          <td><%= order.created_at %></td>
          <td><%= order.fullname %></td>
          <td>Paid</td>
          <td></td>
          <td></td>
        </tr>
        <% end %>
        </tbody>
      </table>


            <div class="clearfix"></div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<!-- /page content -->





Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rails_marketplace-0.0.2 app/views/rails_marketplace/seller/orders.html.erb
rails_marketplace-0.0.1 app/views/rails_marketplace/seller/orders.html.erb