{{
data.used_backup_quota === 0
? "No backups"
: `You've created ${data.used_backup_quota} backup${data.used_backup_quota === 1 ? "" : "s"}`
}}
{{
data.backup_quota - data.used_backup_quota === 0
? "You have reached your backup limit. Consider removing old backups to create new ones."
: `You can create ${data.backup_quota - data.used_backup_quota} more backups for your server.`
}}
A backup is currently being created. This may take a few minutes. This page will
automatically refresh when the backup is complete.