<%- include('../partials/header', { title: 'Floor ' + floor.floor_number + ' - ' + building.name }) %>

<%= building.name %> - Floor <%= floor.floor_number %>

<% if (units && units.length > 0) { %> <% units.forEach(unit => { %>
<% if (unit.image) { %>
Unit <%= unit.unit_number %>
<% } %>

Unit <%= unit.unit_number %>

Rooms: <%= unit.room_number %>

Area: <%= unit.floor_area %> m²

Price: €<%= unit.price.toLocaleString() %>

Status: <%= unit.status %>

View Details
<% }); %> <% } else { %>

No units available on this floor.

<% } %>
← Back