datasurvey/src/main/webapp/app/entities/plantilla/delete/plantilla-delete-dialog.com...

25 lines
985 B
HTML
Raw Normal View History

2021-08-05 06:48:49 +00:00
<form class="ds-form" *ngIf="plantilla" name="deleteForm" (ngSubmit)="confirmDelete(plantilla)">
2021-07-03 21:48:27 +00:00
<div class="modal-body">
<jhi-alert-error></jhi-alert-error>
2021-08-05 06:48:49 +00:00
<p class="ds-title--small">Eliminar plantilla</p>
<p
class="ds-subtitle"
id="jhi-delete-plantilla-heading"
jhiTranslate="dataSurveyApp.plantilla.delete.question"
[translateValues]="{ id: plantilla.id }"
>
2021-07-03 21:48:27 +00:00
Are you sure you want to delete this Plantilla?
</p>
</div>
<div class="modal-footer">
2021-08-05 06:48:49 +00:00
<button type="button" class="ds-btn ds-btn--secondary" data-dismiss="modal" (click)="cancel()">
<fa-icon icon="arrow-left"></fa-icon>&nbsp;<span jhiTranslate="entity.action.cancel">Cancel</span>
2021-07-03 21:48:27 +00:00
</button>
2021-08-11 03:53:09 +00:00
<button id="jhi-confirm-delete-plantilla" 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>&nbsp;<span jhiTranslate="entity.action.delete">Delete</span>
</button>
</div>
</form>