mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 22:13:02 +00:00

# Conflicts: # src/app/collection-page/collection-form/collection-form.component.ts # src/app/collection-page/create-collection-page/create-collection-page.component.html # src/app/community-page/community-form/community-form.component.ts # src/app/community-page/create-community-page/create-community-page.component.html # src/app/shared/comcol/comcol-forms/comcol-form/comcol-form.component.spec.ts # src/app/shared/comcol/comcol-forms/comcol-form/comcol-form.component.ts # src/app/shared/comcol/comcol-forms/edit-comcol-page/comcol-metadata/comcol-metadata.component.spec.ts # src/app/shared/comcol/comcol-forms/edit-comcol-page/comcol-metadata/comcol-metadata.component.ts
17 lines
629 B
HTML
17 lines
629 B
HTML
<div class="container" *ngIf="(isLoading$ | async) === false">
|
|
<div class="row">
|
|
<div class="col-12 pb-4">
|
|
<h2 id="sub-header"
|
|
class="border-bottom pb-2">{{ 'collection.create.sub-head' | translate:{ parent: dsoNameService.getName((parentRD$| async)?.payload) } }}</h2>
|
|
</div>
|
|
</div>
|
|
<ds-collection-form (submitForm)="onSubmit($event)"
|
|
[isCreation]="true"
|
|
(back)="navigateToHome()"
|
|
(finish)="navigateToNewPage()"></ds-collection-form>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<ds-loading *ngIf="isLoading$ | async"></ds-loading>
|
|
</div>
|