#all_index_admin_jquery_start .container .row .col-lg-12.col-md-12.col-sm-12.col-xs-12 %button#toTop{:title => "Go to top"} ⌅ %h3.text-center Country %hr = link_to 'New Country', new_country_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 English %th French %th Spanish %th Russian %th %th %th - @countries.each do |country| %tr %td= country.en %td= country.fr %td= country.es %td= country.ru %td= link_to 'Show', country, class: 'btn btn-primary' %td= link_to 'Edit', edit_country_path(country), class: 'btn btn-warning' %td= link_to 'Destroy', country, :method => :delete, :data => { confirm: 'Are you sure?' }, class: 'btn btn-danger'