Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

_Maintenance.DBBackups.cshtml

@model MaintenanceModel

@T("Admin.System.Maintenance.BackupDatabase.Description")

@await Html.PartialAsync("Table", new DataTablesModel { Name = "backup-list", UrlRead = new DataUrl("BackupFiles", "Common", null), Length = Model.BackupFileSearchModel.PageSize, LengthMenu = Model.BackupFileSearchModel.AvailablePageSizes, ColumnCollection = new List { new ColumnProperty(nameof(BackupFileModel.Name)) { Title = T("Admin.System.Maintenance.BackupDatabase.FileName").Text }, new ColumnProperty(nameof(BackupFileModel.Length)) { Title = T("Admin.System.Maintenance.BackupDatabase.FileSize").Text }, new ColumnProperty(nameof(BackupFileModel.Link)) { Title = T("Admin.System.Maintenance.BackupDatabase.Download").Text, Render = new RenderCustom("renderDownload"), Width = "150", ClassName = NopColumnClassDefaults.Button }, new ColumnProperty(nameof(BackupFileModel.Name)) { Title = T("Admin.System.Maintenance.BackupDatabase.Restore").Text, Render = new RenderCustom("renderRestore"), Width = "150", ClassName = NopColumnClassDefaults.Button }, new ColumnProperty(nameof(BackupFileModel.Name)) { Title = T("Admin.System.Maintenance.BackupDatabase.Delete").Text, Render = new RenderCustom("renderDelete"), Width = "150", ClassName = NopColumnClassDefaults.Button } } })