Rezervacije
This commit is contained in:
37
app/views/reservations/_reservation.html.erb
Normal file
37
app/views/reservations/_reservation.html.erb
Normal file
@@ -0,0 +1,37 @@
|
||||
<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>
|
||||
<%= reservation.customer_id %>
|
||||
</p>
|
||||
|
||||
<p class="my-5">
|
||||
<strong class="block font-medium mb-1">Place:</strong>
|
||||
<%= reservation.place_id %>
|
||||
</p>
|
||||
|
||||
<p class="my-5">
|
||||
<strong class="block font-medium mb-1">Title:</strong>
|
||||
<%= reservation.title %>
|
||||
</p>
|
||||
|
||||
<p class="my-5">
|
||||
<strong class="block font-medium mb-1">Description:</strong>
|
||||
<%= reservation.description %>
|
||||
</p>
|
||||
|
||||
<p class="my-5">
|
||||
<strong class="block font-medium mb-1">Start time:</strong>
|
||||
<%= reservation.start_time %>
|
||||
</p>
|
||||
|
||||
<p class="my-5">
|
||||
<strong class="block font-medium mb-1">End time:</strong>
|
||||
<%= reservation.end_time %>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user