<%= csrf_meta_tag %>

<%= @booking.property.title %>

<%= t("property_hire.hiring_person_name") %> <%= @booking.hirer_name %>
<%= t("property_hire.hiring_person_number") %> <%= @booking.hiring_person_number %>
<%= t("property_hire.hiring_person_email") %> <%= @booking.hiring_person_email %>
<%= t("property_hire.period") %> <%= @booking.period %>
<%= t("property_hire.reason_for_hire") %> <%= @booking.reason_for_hire %>
<%= t("property_hire.note_for_hire") %> <%= @booking.note_for_hire %>
<%= t("property_hire.passed") %> <% if @booking.passed %> Yes <% else %> No <% end %>
Back <% if can_edit_or_delete?(@booking.property) %> <% if @booking.passed %> " class="btn btn-warning">Reject <% else %> " class="btn btn-success">Accept <% end %> Delete <% end %>