@using BTCPayServer.Abstractions.Models @using BTCPayServer.Client @using BTCPayServer.Controllers @model ConfigureOfferingViewModel @{ string offeringId = (string)this.Context.GetRouteValue("offeringId"); ViewData.SetActivePage(AppsNavPages.Update, StringLocalizer["Configure offering"], offeringId); string storeId = (string)this.Context.GetRouteValue("storeId"); var deleteModal = new ConfirmModel(StringLocalizer["Delete offering"], StringLocalizer["This offering will be removed from this store."], StringLocalizer["Delete"]) { ControllerName = "UIApps", ActionName = nameof(UIAppsController.DeleteApp), ActionValues = new { appId = Model.Data.AppId }, GenerateForm = true, Antiforgery = true }; }