mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
19 lines
821 B
HTML
19 lines
821 B
HTML
<div>
|
||
<div class="modal-header">{{ headerLabel | translate:{ dsoName: name } }}
|
||
<button type="button" class="close" (click)="close()" aria-label="Close">
|
||
<span aria-hidden="true">×</span>
|
||
</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
<p>{{ infoLabel | translate:{ dsoName: name } }}</p>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="button" class="cancel btn btn-outline-secondary" (click)="cancelPressed()" aria-label="Cancel">
|
||
<i class="fas fa-times"></i> {{ cancelLabel | translate:{ dsoName: name } }}
|
||
</button>
|
||
<button type="button" class="confirm btn btn-{{brandColor}}" (click)="confirmPressed()" aria-label="Confirm" ngbAutofocus>
|
||
<i *ngIf="confirmIcon" class="{{confirmIcon}}"></i> {{ confirmLabel | translate:{ dsoName: name } }}
|
||
</button>
|
||
</div>
|
||
</div>
|