mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
14 lines
615 B
HTML
14 lines
615 B
HTML
<div class="modal-header">
|
|
<h4 class="modal-title" id="modal-basic-title">{{title}}</h4>
|
|
<button type="button" class="close" aria-label="Close" (click)="cancelClicked()">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p><b>{{message}}</b></p>
|
|
<p *ngIf="message2">{{message2}}</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-outline-dark" (click)="cancelClicked()">Cancel</button>
|
|
<button type="button" class="btn btn-danger" (click)="deleteClicked.emit()">Delete</button>
|
|
</div> |