2021-07-22 08:49:12 +00:00
|
|
|
<form class="ds-form" *ngIf="encuesta" name="deleteForm" (ngSubmit)="confirmDelete(encuesta!)">
|
2021-07-03 21:48:27 +00:00
|
|
|
<div class="modal-header">
|
2021-07-22 08:49:12 +00:00
|
|
|
<h2 class="ds-title" data-cy="encuestaDeleteDialogHeading" jhiTranslate="entity.delete.title">Confirm delete operation</h2>
|
2021-07-03 21:48:27 +00:00
|
|
|
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true" (click)="cancel()">×</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-body">
|
|
|
|
<jhi-alert-error></jhi-alert-error>
|
|
|
|
|
|
|
|
<p id="jhi-delete-encuesta-heading" jhiTranslate="dataSurveyApp.encuesta.delete.question" [translateValues]="{ id: encuesta.id }">
|
2021-07-24 02:59:03 +00:00
|
|
|
Are you sure you want to delete this survey?
|
2021-07-03 21:48:27 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer">
|
2021-07-22 08:49:12 +00:00
|
|
|
<button type="button" class="ds-btn ds-btn--secondary" data-dismiss="modal" (click)="cancel()">
|
|
|
|
<fa-icon icon="arrow-left"></fa-icon> <span jhiTranslate="entity.action.cancel">Cancel</span>
|
2021-07-03 21:48:27 +00:00
|
|
|
</button>
|
|
|
|
|
2021-07-22 08:49:12 +00:00
|
|
|
<button id="jhi-confirm-delete-encuesta" data-cy="entityConfirmDeleteButton" type="submit" class="ds-btn ds-btn--danger">
|
2021-07-03 21:48:27 +00:00
|
|
|
<fa-icon icon="times"></fa-icon> <span jhiTranslate="entity.action.delete">Delete</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|