PlotDirector/PlotLine/Views/Onboarding/StoryIntelligenceKnowledgeComplete.cshtml

48 lines
2.1 KiB
Plaintext

@model StoryIntelligenceKnowledgeImportResultViewModel
@{
ViewData["Title"] = "Knowledge created";
}
<section class="onboarding-shell" aria-labelledby="story-knowledge-complete-title">
<div class="onboarding-panel onboarding-review-panel">
<partial name="_StoryIntelligencePipelineHeader" model="@(new StoryIntelligencePipelineHeaderViewModel { CurrentStage = "Complete" })" />
<div class="onboarding-copy">
<p class="eyebrow">Build Story Database</p>
<div class="onboarding-success-heading">
<span aria-hidden="true">&check;</span>
<h1 id="story-knowledge-complete-title">Knowledge created</h1>
</div>
<p>PlotDirector updated the existing Knowledge Explorer from the approved Story Intelligence decisions.</p>
</div>
<div class="onboarding-scan-counts onboarding-review-counts">
<div>
<span>Knowledge created</span>
<strong>@Model.KnowledgeCreated.ToString("N0")</strong>
</div>
<div>
<span>Knowledge linked</span>
<strong>@Model.KnowledgeLinked.ToString("N0")</strong>
</div>
<div>
<span>Knowledge merged</span>
<strong>@Model.KnowledgeMerged.ToString("N0")</strong>
</div>
<div>
<span>Knowledge ignored</span>
<strong>@Model.KnowledgeIgnored.ToString("N0")</strong>
</div>
</div>
<div class="story-future-stage-grid">
<article class="story-future-stage"><strong>Review Continuity</strong><span>Coming Soon</span></article>
<article class="story-future-stage"><strong>Timeline Events</strong><span>Coming Soon</span></article>
</div>
<div class="onboarding-actions">
<a class="btn btn-outline-secondary" asp-action="StoryIntelligenceKnowledge" asp-route-batchId="@Model.BatchID">Back to knowledge</a>
<a class="btn btn-primary" asp-action="StoryIntelligenceComplete" asp-route-batchId="@Model.BatchID">Continue</a>
</div>
</div>
</section>