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

All notifications are disabled.

} else {

To disable notification for a feature, kindly toggle off the specified feature.

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