%h1 Listing hotelprices %table %thead %tr %th Hotel %th Hotelroom %th Available %th Datefrom %th Dateto %th %th %th %tbody - @hotelprices.each do |hotelprice| %tr %td= hotelprice.hotel_id %td= hotelprice.hotelroom_id %td= hotelprice.available %td= hotelprice.datefrom %td= hotelprice.dateto %td= link_to 'Show', hotelprice %td= link_to 'Edit', edit_hotelprice_path(hotelprice) %td= link_to 'Destroy', hotelprice, :method => :delete, :data => { confirm: 'Are you sure?' } %br = link_to 'New Hotelprice', new_hotelprice_path