20 lines
575 B
HTML
20 lines
575 B
HTML
@if ((isLoading$ | async) == true) {
|
|
<h2 i18n>Loading publication to edit...</h2>
|
|
<mat-spinner></mat-spinner>
|
|
}
|
|
@else {
|
|
@if (publication) {
|
|
<app-publication-edition
|
|
title="Update publication {{ publication.title }}"
|
|
[publication]="publication"
|
|
[isSaving$]="isSaving$"
|
|
(publicationSave)="onPublicationSave($event)"
|
|
i18n-title>
|
|
</app-publication-edition>
|
|
}
|
|
@else {
|
|
<div class="loading-failed">
|
|
<h1 i18n>Publication failed to load...</h1>
|
|
</div>
|
|
}
|
|
} |