@model PlotThreadListViewModel @{ ViewData["Title"] = "Plot Threads"; ViewData["ProjectSection"] = "Threads"; }

@Model.Project.ProjectName

Plot threads

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

No plot threads yet. Threads are the unresolved or developing strands that create markers on plot line lanes.

} else {
@foreach (var thread in Model.PlotThreads) { }
Thread Plot line Type Status Importance
@thread.ThreadTitle @thread.PlotLineName @thread.ThreadTypeName @thread.ThreadStatusName @thread.Importance Focus Edit
}