mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
19 lines
769 B
HTML
19 lines
769 B
HTML
<div class="container" *ngIf="(isLoading$ | async) === false">
|
|
<div class="row">
|
|
<div class="col-12 pb-4">
|
|
<ng-container *ngVar="(parentRD$ | async)?.payload as parent">
|
|
<h1 *ngIf="!parent" id="header" class="border-bottom p-2">{{ 'community.create.head' | translate }}</h1>
|
|
<h1 *ngIf="parent" id="sub-header"
|
|
class="border-bottom pb-2">{{ 'community.create.sub-head' | translate:{ parent: dsoNameService.getName(parent) } }}</h1>
|
|
</ng-container>
|
|
</div>
|
|
</div>
|
|
<ds-community-form (submitForm)="onSubmit($event)"
|
|
[isCreation]="true"
|
|
(back)="navigateToHome()"></ds-community-form>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<ds-loading *ngIf="isLoading$ | async"></ds-loading>
|
|
</div>
|