2024-08-06 14:16:40 +02:00
|
|
|
<div id="<%= dom_id reservation %>">
|
|
|
|
|
<p class="my-5">
|
|
|
|
|
<strong class="block font-medium mb-1">Company:</strong>
|
|
|
|
|
<%= reservation.company_id %>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p class="my-5">
|
|
|
|
|
<strong class="block font-medium mb-1">Customer:</strong>
|
2025-02-27 07:45:54 +01:00
|
|
|
<%= reservation.customer.try(:full_name) || "N/A" %>
|
|
|
|
|
(<%= reservation.customer.try(:birthyear) %>)
|
2024-08-06 14:16:40 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p class="my-5">
|
2024-08-24 07:06:09 +02:00
|
|
|
<strong class="block font-medium mb-1">Team:</strong>
|
|
|
|
|
<%= reservation.team.name %>
|
2024-08-06 14:16:40 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p class="my-5">
|
|
|
|
|
<strong class="block font-medium mb-1">Start time:</strong>
|
2025-03-03 19:04:30 +00:00
|
|
|
<%= l reservation.start_time if reservation.start_time %>
|
2024-08-06 14:16:40 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p class="my-5">
|
|
|
|
|
<strong class="block font-medium mb-1">End time:</strong>
|
2025-03-03 19:04:30 +00:00
|
|
|
<%= l reservation.end_time if reservation.end_time %>
|
2024-08-06 14:16:40 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
</div>
|