%h1 Listing hotelrooms .col-lg-3 =render 'layouts/admin/side_menu' .col-lg-9 %table.table.table-striped.table-bordered.table-hover %thead %tr %th Hotel %th Title en %th Description en %th Title fr %th Description fr %th Title ru %th Description ru %th Title es %th Description es %th %th %th %tbody - @hotelrooms.each do |hotelroom| %tr %td= hotelroom.hotel_id %td= hotelroom.title_en %td= hotelroom.description_en %td= hotelroom.title_fr %td= hotelroom.description_fr %td= hotelroom.title_ru %td= hotelroom.description_ru %td= hotelroom.title_es %td= hotelroom.description_es %td= link_to 'Show', hotelroom %td= link_to 'Edit', edit_hotelroom_path(hotelroom) %td= link_to 'Destroy', hotelroom, :method => :delete, :data => { confirm: 'Are you sure?' } %br