HOTELS

<%= render :partial => "shared/flash" %>

<%= link_to "Add new hotel", new_admin_hotel_path, class: "btn btn-primary" %>

<% @hotels.each_with_index do |hotel, x| %> <% end %>
# Name Address  
<%= @no+x+1 %> <%= hotel.name %> <%= hotel.address %> <%= link_to "Edit", edit_admin_hotel_path(hotel.id, :hotel => params[:hotel]), :class => "btn btn-success" %> <%= link_to "Delete", admin_hotel_path(hotel.id, :hotel => params[:hotel] ), :method => :delete, data: {:confirm => "Are you sure?"}, :class => "btn btn-danger" %>