<%= csrf_meta_tag %>

<%= @booking.property.title %>

<% if @booking.recurring %> <% end %>
<%= 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.recurring_interval") %> <%= @booking.recurring_interval %>
<%= t("property_hire.recurring_end_date") %> <%= @booking.recurring_end_date.strftime("%y-%m-%d %H:%M") %>
<%= 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 %>