Book @book.BookNumber
@book.BookTitle
@if (!string.IsNullOrWhiteSpace(book.Subtitle)) {@book.Subtitle
}@book.WordCountLabel
@if (book.ProgressPercentage.HasValue) { var progressValue = Math.Round(book.ProgressPercentage.Value);@model ProjectDetailViewModel
@{
ViewData["Title"] = Model.Project.ProjectName;
ViewData["ProjectSection"] = "Overview";
var summaryCards = new[]
{
("Total Books", Model.Summary.TotalBooks.ToString("N0")),
("Published Books", Model.Summary.PublishedBooks.ToString("N0")),
("Drafting Books", Model.Summary.DraftingBooks.ToString("N0")),
("Planning Books", Model.Summary.PlanningBooks.ToString("N0")),
("Total Words", Model.Summary.TotalWords.ToString("N0")),
("Characters", Model.Summary.CharacterCount.ToString("N0")),
("Locations", Model.Summary.LocationCount.ToString("N0")),
("Active Plot Threads", Model.Summary.ActivePlotThreadCount.ToString("N0")),
("Continuity Warnings", Model.Summary.ContinuityWarningCount.ToString("N0"))
};
}
Series Dashboard
@Model.Project.Description
}@card.Item1
@card.Item2Add the first book to begin shaping this series.
Book @book.BookNumber
@book.Subtitle
}@book.WordCountLabel
@if (book.ProgressPercentage.HasValue) { var progressValue = Math.Round(book.ProgressPercentage.Value);