.page-header
%h1.pull-left Products
.pull-right
%ul.breadcrumb
%li
= link_to new_admin_product_path do
%i.icon-plus-sign
New Product
.row
.col-sm-12
.box.bordered-box.dark-border
.box-content.box-no-padding
.responsive-table
.scrollable-area
%table.table
%thead
%tr
%th Name
%th Style
%th
%tbody
- @products.each do |product|
%tr
%td
= link_to product.name, admin_product_path(product)
%td= product.style.capitalize
%td
.text-right
= link_to edit_admin_product_path(product), class: 'btn btn-xs' do
%i.icon-edit
Edit