@model IReadOnlyList @{ ViewData["Title"] = "Projects"; }

Series planning

Projects

@if (!Model.Any()) {

Start with a series or standalone novel

Create a project, then add books, chapters and scenes in narrative order.

Create your first project
} else {
@foreach (var project in Model) {

@project.ProjectName

@project.AccessRole

@(string.IsNullOrWhiteSpace(project.Description) ? "No description yet." : project.Description)

Open Edit @if (project.IsOwner) {
}
}
}