@model LocationListViewModel @{ ViewData["Title"] = "Locations"; ViewData["ProjectSection"] = "Locations"; }

Locations

@Model.Project.ProjectName

New location

Location relationship

Create location relationship

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

No locations yet

Add buildings, floors, rooms, streets, and other places that matter to the story.

} else {
@foreach (var location in Model.Locations) {
@location.LocationName @if (!string.IsNullOrWhiteSpace(location.LocationTypeName)) { @location.LocationTypeName } @location.LocationPath
Edit
}
}