%- include('../partials/header', { title: 'Select Building' }) %>
Step 1: Select Building
Choose a building to add a new unit:
<% if (buildings && buildings.length > 0) { %>
<% buildings.forEach(building => { %>
<%= building.name %>
<%= building.address %>
<%= building.description %>
Select Building
<% }); %>
<% } else { %>
No buildings found for this admin.
<% } %>
← Back