mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 04:53:06 +00:00
16 lines
572 B
HTML
16 lines
572 B
HTML
<div class="container" *ngIf="(isLoading$ | async) === false">
|
|
<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">
|
|
<ds-loading *ngIf="isLoading$ | async"></ds-loading>
|
|
</div>
|