@model BTCPayServer.Controllers.UIManageController.NotificationSettingsViewModel @{ ViewData.SetActivePage(ManageNavPages.Notifications, "Notification Settings"); }

@ViewData["Title"]

@if (Model.All) {
All notifications are disabled.
} else {

Do not receive notifications for

    @for (var index = 0; index < Model.DisabledNotifications.Count; index++) { var item = Model.DisabledNotifications[index];
  • }
}