@model ProjectRestorePointListViewModel @{ ViewData["Title"] = "Restore Points"; var defaultRestorePointName = $"Manual restore point - {DateTime.Now:yyyy-MM-dd HH:mm}"; } @functions { private static string FormatSize(long bytes) { if (bytes >= 1024 * 1024) { return $"{bytes / 1024d / 1024d:0.0} MB"; } if (bytes >= 1024) { return $"{bytes / 1024d:0.0} KB"; } return $"{bytes} bytes"; } }
Project backup
Create manual database-saved snapshots of the project export JSON.
Manual snapshot
No restore points yet.
} else {| Name | Type | Created | Size | Notes | |
|---|---|---|---|---|---|
| @restorePoint.RestorePointName | @restorePoint.RestorePointType | @restorePoint.CreatedDateUtc.ToLocalTime().ToString("dd MMM yyyy HH:mm") | @FormatSize(restorePoint.JsonSizeBytes) | @restorePoint.Notes | Download |