@model BTCPayServer.Models.NotificationViewModels.IndexViewModel @{ ViewData["Title"] = "Notifications"; } @section HeadScripts { } @if (TempData.HasStatusMessage()) { } @ViewData["Title"] Generate Test Notification Date Message @foreach (var item in Model.Items) { @* TODO: Click on td to mark notification read through JavaScript magic *@ @* TODO: Multiselect akin to Gmail *@ @item.Created.ToBrowserDate() @item.Body @if (!String.IsNullOrEmpty(item.ActionLink)) { Action } else { } @if (item.Seen) { } else { } }