mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
17 lines
629 B
HTML
17 lines
629 B
HTML
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h2>{{headerMessage | translate: {id: item.handle} }}</h2>
|
|
<p>{{descriptionMessage | translate}}</p>
|
|
<ds-modify-item-overview [item]="item"></ds-modify-item-overview>
|
|
<button (click)="performAction()" class="btn btn-outline-secondary perform-action">{{confirmMessage | translate}}
|
|
</button>
|
|
<button [routerLink]="[itemPageRoute, 'edit']" class="btn btn-outline-secondary cancel">
|
|
{{cancelMessage| translate}}
|
|
</button>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|