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