client/src/app/+my-account/my-account-import-export/my-account-import.component.html
@if (isImportEnabled()) {
You can import an archive created by another PeerTube website.
This is an import tool and not a migration tool. It's the reason why data (like channels or videos) is duplicated and not moved from your previous PeerTube website.
The import process will automatically:
The following data objects are not imported:
@if (isEmailEnabled()) {
An email will be sent when the import process is complete.
} @if (latestImport) {
Latest import on: {{ latestImport.createdAt | ptDate: 'medium' }}
Latest import state: {{ latestImport.state.label }}
} @if (hasPendingImport()) { You can't re-import an archive because you already have an import that is currently being processed by PeerTube. } @else { @if (archiveUploadFinished && !error) { Upload completed. Your archive import will be processed as soon as possible. } Select the archive file to import } } @else {
User import is not enabled by your administrator.
}