@model BTCPayServer.Models.NotificationViewModels.IndexViewModel @{ ViewData["Title"] = "Notifications"; } @section HeadScripts { }
@if (TempData.HasStatusMessage()) {
}

@ViewData["Title"]


@foreach (var item in Model.Items) { @* TODO: Click on td to mark notification read through JavaScript magic *@ @* TODO: Multiselect akin to Gmail *@ }
Date Message    
@item.Created.ToBrowserDate() @item.Body @if (!String.IsNullOrEmpty(item.ActionLink)) { Action } else {   } @if (item.Seen) { } else { }