@model SceneEditViewModel
Character attribute events @Model.CharacterAttributeEvents.Count
@if (!Model.CharacterAttributeEvents.Any()) {

No character attribute events are recorded for this scene yet.

} else {
@foreach (var item in Model.CharacterAttributeEvents) {

@item.CharacterName

@item.AttributeName

@item.AttributeValue
@if (!string.IsNullOrWhiteSpace(item.Description)) {

@item.Description

}
@Html.AntiForgeryToken()
}
}
Add attribute event
@Html.AntiForgeryToken()