@using System.Text.Json @model RelationshipMapViewModel @{ ViewData["Title"] = $"Relationship Map - {Model.Project.ProjectName}"; var jsonOptions = new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase }; }
Project workspace @Model.Project.ProjectName

Relationships

Relationship Map

A read-only network of character relationships as of @Model.StoryPointLabel.

Story Bible Characters
Project Start
@foreach (var category in Model.Categories) { @category.CategoryName }
@if (!Model.Nodes.Any() || !Model.Links.Any()) {

No visible relationships at this point

Try choosing a later book, chapter, or scene, or remove the character focus.

} else { }

Visible relationships

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

No relationships are visible for this map state.

} else {
@foreach (var relationship in Model.Relationships) { }
}
@section Scripts { }