Sha256: 82e0891be6f49a22dad0ee40eee28be029b71b6ba4470d1300e16f50e3397344

Contents?: true

Size: 1.47 KB

Versions: 6

Compression:

Stored size: 1.47 KB

Contents

<section class="content-header">
  <h1>
    Products
  </h1>
  <ol class="breadcrumb">
    <li><a href="/"><i class="fa fa-dashboard"></i> Home</a></li>
    <li class="active">Products</li>
  </ol>
  <div class="content-action">
    <%= link_to "Create Product", new_product_path, class: "btn btn-primary" %>
  </div>
</section>

<section class="body clearfix">
  <div class="col-md-12">
    <div class="box">
      <div class="box-header">
        <div class="box-tools">
        </div>
      </div>

      <div class="box-body no-padding list-body">
        <table class="table">
          <tbody>
            <tr>
              <th style="width: 20px">ID</th>
              <th>Name</th>
              <th>Price</th>
              <th>Buy</th>
              <th style="width: 120px">Actions</th>
            </tr>
            <% @products.each do |p| %>
              <tr>
                <td><%= p.id %></td>
                <td><%= p.name %></td>
                <td><%= p.price %></td>
                <td><%= p.buy_link %></td>
                <td class="flex-center list-actions">
                  <%= link_to "detail", product_path(p) %>
                  <%= link_to "edit", edit_product_path(p) %>
                  <%= link_to "destroy", product_path(p), method: :delete %>
                </td>
              </tr>
            <% end %>
          </tbody>
        </table>
      </div>

      <div class="list-nav">
        <%= paginate @products %>
      </div>
    </div>
  </div>
</section>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
dq_admin-0.4.3 app/views/dq_admin/products/index.html.erb
dq_admin-0.4.2 app/views/dq_admin/products/index.html.erb
dq_admin-0.4.0 app/views/dq_admin/products/index.html.erb
dq_admin-0.3.0 app/views/dq_admin/products/index.html.erb
dq_admin-0.2.0 app/views/dq_admin/products/index.html.erb
dq_admin-0.1.0 app/views/dq_admin/products/index.html.erb