.container .row .col-lg-12.col-md-12.col-sm-12.col-xs-12 %h3.text-center Yacht Brands %hr = link_to 'New Yacht brand', new_yacht_brand_path, class:'btn btn-lg btn-block btn-success' %hr .col-lg-3.col-md-3.col-sm-12.col-xs-12 =render 'layouts/admin/side_menu' .col-lg-9.col-md-9.col-sm-12.col-xs-12 %table.table.table-striped.table-bordered.table-hover %tr %th Logo %th Brand %th Title en %th %th %th - @yacht_brands.each do |yacht_brand| %tr %td - if yacht_brand.logo.thumblittle.url = image_tag(yacht_brand.logo.thumblittle.url, class: 'img-thumbnail', size: '100x100') - else = "" %td= yacht_brand.brand %td= yacht_brand.title_en %td= link_to 'Show', yacht_brand, class: 'btn btn-primary' %td= link_to 'Edit', edit_yacht_brand_path(yacht_brand), class: 'btn btn-warning' %td= link_to 'Destroy', yacht_brand, :method => :delete, :data => { confirm: 'Are you sure?' }, class: 'btn btn-danger' %br