<%= @room.name %>

<%= @room.address %>

<%# Geocoder adds automatically %>

Room rate: <%= number_to_currency @room.price_in_pence %>

<%= simple_format @room.description %>

Ask <%= mail_to @room.user.email, @room.user.name %> about this room

<% if current_user? %> <% if current_user.id == @room.user.id %>

<%= link_to "Edit", edit_user_room_path(current_user, @room) %>

<%= link_to "Delete", room_path(@room), method: :delete, data: { confirm: 'Are you sure?' } %>

<% else %>

<%= link_to "Book this room", new_room_order_path(@room) %>

<% end %> <% else %>

<%= link_to "Sign up to book this room", new_user_path, class: :button %>