Files
dspace-angular/src/app/collection-page/create-collection-page/create-collection-page.component.html
2025-03-10 17:39:34 +01:00

20 lines
562 B
HTML

@if ((isLoading$ | async) === false) {
<div class="container">
<div class="row">
<div class="col-12 pb-4">
<h1 id="sub-header"
class="border-bottom pb-2">{{ 'collection.create.sub-head' | translate:{ parent: dsoNameService.getName((parentRD$| async)?.payload) } }}</h1>
</div>
</div>
<ds-collection-form (submitForm)="onSubmit($event)"
[isCreation]="true"
(back)="navigateToHome()"></ds-collection-form>
</div>
}
<div class="container">
@if (isLoading$ | async) {
<ds-loading></ds-loading>
}
</div>