<% @tables.each do |table| %>
<% if table.status == 'occupied' %>
<% if table.get_booking.nil? %>
Zone <%= table.zone_id %>
Table <%= table.name %> ( <%= table.seater %> Seat )
<% else %>
<% if table.get_checkout_booking.nil? %>
<% else %>
<% end %>
Zone <%= table.zone_id %>
Table <%= table.name %> ( <%= table.seater %> Seat )
<% end %>
<% else %>
Zone <%= table.zone_id %>
Table <%= table.name %> ( <%= table.seater %> Seat )
<% end %>
<% end %>