2021-07-26 01:20:07 +00:00
|
|
|
<form *ngIf="encuesta" name="deleteForm" (ngSubmit)="confirmPublish(encuesta!)">
|
2021-07-24 04:50:40 +00:00
|
|
|
<div class="modal-header">
|
|
|
|
<!-- <h4 class="modal-title" data-cy="encuestaDeleteDialogHeading" jhiTranslate="entity.publish.title">Confirm delete operation</h4>-->
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-body">
|
|
|
|
<jhi-alert-error></jhi-alert-error>
|
|
|
|
|
2021-07-26 02:20:37 +00:00
|
|
|
<p id="jhi-delete-encuesta-heading">Elija la fecha de finalización de su encencuesta</p>
|
|
|
|
<input type="date" onchange="fechaFinalizacionIsInvalid()" />
|
2021-07-24 04:50:40 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal" (click)="cancel()">
|
|
|
|
<fa-icon icon="ban"></fa-icon> <span jhiTranslate="entity.action.cancel">Cancel</span>
|
|
|
|
</button>
|
|
|
|
|
2021-07-26 01:20:07 +00:00
|
|
|
<button
|
|
|
|
disabled="fechaFinalizarInvalid"
|
|
|
|
id="jhi-confirm-delete-encuesta"
|
|
|
|
data-cy="entityConfirmDeleteButton"
|
|
|
|
type="submit"
|
|
|
|
class="ds-btn ds-btn--primary"
|
|
|
|
>
|
2021-07-24 04:50:40 +00:00
|
|
|
<span jhiTranslate="entity.action.publish">Delete</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|