mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
14 lines
908 B
HTML
14 lines
908 B
HTML
<div class="container" *ngVar="(collectionRD$ | async)?.payload as collection">
|
|
<div class="row">
|
|
<div class="col-12" *ngVar="(itemRD$ | async) as itemRD">
|
|
<ng-container *ngIf="itemRD?.hasSucceeded">
|
|
<h2 class="border-bottom">{{ 'collection.edit.template.head' | translate:{ collection: collection?.name } }}</h2>
|
|
<ds-item-metadata [updateService]="itemTemplateService" [item]="itemRD?.payload"></ds-item-metadata>
|
|
<button [routerLink]="getCollectionEditUrl(collection)" class="btn btn-outline-secondary">{{ 'collection.edit.template.cancel' | translate }}</button>
|
|
</ng-container>
|
|
<ds-loading *ngIf="itemRD?.isLoading" [message]="'collection.edit.template.loading' | translate"></ds-loading>
|
|
<ds-alert *ngIf="itemRD?.hasFailed" [type]="AlertTypeEnum.Error" [content]="'collection.edit.template.error' | translate"></ds-alert>
|
|
</div>
|
|
</div>
|
|
</div>
|