@model StoryAssetEditViewModel @{ ViewData["Title"] = Model.StoryAssetID == 0 ? "New Story Asset" : "Edit Story Asset"; }

Story asset

@ViewData["Title"]

@if (TempData["ImageError"] is string imageError) {
@imageError
}
@for (var i = 0; i < Model.Aliases.Count; i++) { @Model.Aliases[i] }
@Model.Importance
Makes this item available as a draggable shortcut on the Timeline page.

Asset Image

JPG, PNG or WebP. A 128 x 128 thumbnail is generated automatically.
@if (!string.IsNullOrWhiteSpace(Model.ImagePath) || !string.IsNullOrWhiteSpace(Model.ThumbnailPath)) { }
Cancel
@section Scripts { }