@model FloorPlanListViewModel @{ ViewData["Title"] = "Floor Plans"; ViewData["ProjectSection"] = "Floor Plans"; }

Location plans

@Model.Project.ProjectName

@if (TempData["FloorPlanMessage"] is string message) {
@message
}

Create floor plan

@if (!Model.FloorPlans.Any()) {

No floor plans yet

Create a plan, then arrange existing locations as rooms, corridors, halls, gardens, or other spaces.

} else {
@foreach (var floorPlan in Model.FloorPlans) {

@floorPlan.Name

@if (!string.IsNullOrWhiteSpace(floorPlan.Description)) {

@floorPlan.Description

}

@floorPlan.FloorCount floor(s), @floorPlan.BlockCount placed block(s)

Open editor
}
@foreach (var floorPlan in Model.FloorPlans) { } }