@model ScenarioListViewModel @{ ViewData["Title"] = "Scenarios"; ViewData["ProjectSection"] = "Scenarios"; }

Planning sandbox

Scenarios

Test structural changes without changing the main story order.

Create Scenario
@if (!Model.Scenarios.Any()) {

No scenarios yet. Create one from the current order to test a structural idea.

} else {
@foreach (var scenario in Model.Scenarios) {

@scenario.ScenarioName

@if (scenario.IsAppliedToMain) { Applied }

@scenario.Description

@scenario.SceneCount scenes @scenario.WarningCount warnings @if (!string.IsNullOrWhiteSpace(scenario.BookTitle)) { @scenario.BookTitle }
}
}