@model BTCPayServer.Models.NotificationViewModels.IndexViewModel @{ ViewData["Title"] = "Notifications"; }

@ViewData["Title"]

@if (Model.Items.Count > 0) {
@if (Model.Items.Any()) {
@foreach (var item in Model.Items) { }
Date
Message
0 selected
@item.Created.ToBrowserDate() @item.Body
@if (!string.IsNullOrEmpty(item.ActionLink)) { Details }
}
} else {

There are no notifications.

} @section PageFootContent { }