Some checks failed
Build and Deploy Java Gradle Application / build-and-deploy (push) Failing after 53s
19 lines
472 B
HTML
19 lines
472 B
HTML
@if (isLoading()) {
|
|
<h2 i18n>Loading publication to edit...</h2>
|
|
<mat-spinner/>
|
|
} @else {
|
|
@if (publication(); as publication) {
|
|
<app-publication-edition
|
|
title="Update publication {{ publication.title }}"
|
|
[publication]="publication"
|
|
[isSaving]="isSaving()"
|
|
(publicationSave)="onPublicationSave($event)"
|
|
i18n-title
|
|
/>
|
|
} @else {
|
|
<div class="loading-failed">
|
|
<h1 i18n>Publication failed to load...</h1>
|
|
</div>
|
|
}
|
|
}
|