72 lines
2.5 KiB
Plaintext
72 lines
2.5 KiB
Plaintext
<%= csrf_meta_tag %>
|
|
<h3><%= @booking.property.title %></h3>
|
|
<table class="table main-list">
|
|
<tbody>
|
|
<tr>
|
|
<td><%= t("property_hire.hiring_person_name") %></td>
|
|
<td><%= @booking.hirer_name %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><%= t("property_hire.hiring_person_number") %></td>
|
|
<td><%= @booking.hiring_person_number %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><%= t("property_hire.hiring_person_email") %></td>
|
|
<td><%= @booking.hiring_person_email %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><%= t("property_hire.period") %></td>
|
|
<td><%= @booking.period %></td>
|
|
</tr>
|
|
<% if @booking.recurring %>
|
|
<tr>
|
|
<td><%= t("property_hire.recurring_interval") %></td>
|
|
<td><%= @booking.recurring_interval %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><%= t("property_hire.recurring_end_date") %></td>
|
|
<td><%= @booking.recurring_end_date.strftime("%y-%m-%d %H:%M") %></td>
|
|
</tr>
|
|
<% end %>
|
|
<tr>
|
|
<td><%= t("property_hire.reason_for_hire") %></td>
|
|
<td><%= @booking.reason_for_hire %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><%= t("property_hire.note_for_hire") %></td>
|
|
<td><%= @booking.note_for_hire.html_safe %></td>
|
|
</tr>
|
|
<% fields_name = ["organization" ,"person_in_charge" , "tel_of_person_in_charge" , "department" , "contact_person" , "tel_of_contact_person" , "mobile_phone_of_contact_person" , "contact_person_Email" , "contact_person_department"] %>
|
|
<% fields_name.each do |field_name| %>
|
|
<% if(@booking.property[field_name]["enable"] == "1" rescue false) %>
|
|
<tr>
|
|
<td><%= t("property_hire.#{field_name}") %></td>
|
|
<td><%= @booking[field_name].to_s %></td>
|
|
</tr>
|
|
<% end %>
|
|
<% end %>
|
|
<tr>
|
|
<td><%= t("property_hire.passed") %></td>
|
|
<td>
|
|
<% if @booking.passed %>
|
|
<span class="badge badge-success">Yes</span>
|
|
<% else %>
|
|
<span class="badge badge-important">No</span>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<a href="" onclick="window.history.back();return false;" class="btn btn-warning">Back</a>
|
|
<% if can_edit_or_delete?(@booking.property) %>
|
|
<% if @booking.passed %>
|
|
<a href="<%= pass_booking_admin_property_hire_path(@booking, :status => "reject") %>" class="btn btn-warning">Reject</a>
|
|
<% else %>
|
|
<a href="<%= pass_booking_admin_property_hire_path(@booking, :status => "accept") %>" class="btn btn-success">Accept</a>
|
|
<% end %>
|
|
<a href="<%= delete_booking_details_admin_property_hire_path(@booking, :page => params[:page]) %>" class="btn btn-danger" data-method="delete" data-confirm="Are you sure?">Delete</a>
|
|
<% end %>
|
|
|
|
|
|
|