16 lines
312 B
Plaintext
16 lines
312 B
Plaintext
|
<h1>ID: <%= @tables_arrangement.id %></h1>
|
||
|
|
||
|
<p>Discomfort: <%= @tables_arrangement.discomfort %></p>
|
||
|
|
||
|
<h2>Seats</h2>
|
||
|
|
||
|
<% @seats.each do |table_number, seats| %>
|
||
|
|
||
|
<h3>Table <%= table_number %></h3>
|
||
|
|
||
|
<ul>
|
||
|
<% seats.each do |seat| %>
|
||
|
<li><%= seat.guest.full_name %></li>
|
||
|
<% end %>
|
||
|
</ul>
|
||
|
<% end %>
|