@{ Layout = "~/Views/Shared/_FunctionLayout.cshtml"; } @model IEnumerable @Html.Partial("~/Views/Misc/_MailNotificationGridPartial.cshtml", Model) @Html.Partial("~/Views/Shared/_PopupDialogYesNo.cshtml", new GreenTree.Nachtragsmanagement.Web.Models.Global.YesNoDialogModel { PopupName = "devPopupControlDeleteMailNotification", Content = "
Sind Sie sicher, dass Sie die Benachrichtigung " + "\"{mailNotification}\" löschen möchten?
", HeaderText = "\"{mailNotification}\" löschen", YesFunction = "function (s, e) { deleteMailNotification(); }", YesButtonName = "devButtonDeleteMailNotificationYes", NoButtonName = "devButtonDeleteMailNotificationNo" }) @Html.Partial("~/Views/Shared/_PopupDialogYesNo.cshtml", new GreenTree.Nachtragsmanagement.Web.Models.Global.YesNoDialogModel { PopupName = "devPopupControlProcessMailNotification", Content = "
Sind Sie sicher, dass Sie die Benachrichtigung " + "\"{mailNotification}\" sofort durchführen möchten?
", HeaderText = "\"{mailNotification}\" löschen", YesFunction = "function (s, e) { processMailNotification(); }", YesButtonName = "devButtonProcessMailNotificationYes", NoButtonName = "devButtonProcessMailNotificationNo" })