@model LocationListViewModel
@{
ViewData["Title"] = "Locations";
}
Locations
@Model.Project.ProjectName
New location
@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
}
}