@using BTCPayServer.Abstractions.Contracts @model BTCPayServer.Controllers.ManageController.NotificationSettingsViewModel @inject IEnumerable NotificationHandlers @{ ViewData.SetActivePageAndTitle(ManageNavPages.Notifications, "Notification preferences"); }
@if (Model.All) {
All notifications are disabled.
} else {
    @for (var index = 0; index < Model.DisabledNotifications.Count; index++) { var item = Model.DisabledNotifications[index];
  • }
}