119 lines
5.2 KiB
HTML
119 lines
5.2 KiB
HTML
|
<div class="row justify-content-center">
|
||
|
<div class="col-8">
|
||
|
<form name="editForm" role="form" novalidate (ngSubmit)="save()" [formGroup]="editForm">
|
||
|
<h2
|
||
|
id="jhi-usuario-extra-heading"
|
||
|
data-cy="UsuarioExtraCreateUpdateHeading"
|
||
|
jhiTranslate="dataSurveyApp.usuarioExtra.home.createOrEditLabel"
|
||
|
>
|
||
|
Create or edit a Usuario Extra
|
||
|
</h2>
|
||
|
|
||
|
<div>
|
||
|
<jhi-alert-error></jhi-alert-error>
|
||
|
|
||
|
<div class="form-group" [hidden]="editForm.get('id')!.value == null">
|
||
|
<label class="form-control-label" jhiTranslate="global.field.id" for="field_id">ID</label>
|
||
|
<input type="number" class="form-control" name="id" id="field_id" data-cy="id" formControlName="id" [readonly]="true" />
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label class="form-control-label" jhiTranslate="dataSurveyApp.usuarioExtra.nombre" for="field_nombre">Nombre</label>
|
||
|
<input type="text" class="form-control" name="nombre" id="field_nombre" data-cy="nombre" formControlName="nombre" />
|
||
|
<div *ngIf="editForm.get('nombre')!.invalid && (editForm.get('nombre')!.dirty || editForm.get('nombre')!.touched)">
|
||
|
<small class="form-text text-danger" *ngIf="editForm.get('nombre')?.errors?.required" jhiTranslate="entity.validation.required">
|
||
|
This field is required.
|
||
|
</small>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label class="form-control-label" jhiTranslate="dataSurveyApp.usuarioExtra.iconoPerfil" for="field_iconoPerfil"
|
||
|
>Icono Perfil</label
|
||
|
>
|
||
|
<input
|
||
|
type="text"
|
||
|
class="form-control"
|
||
|
name="iconoPerfil"
|
||
|
id="field_iconoPerfil"
|
||
|
data-cy="iconoPerfil"
|
||
|
formControlName="iconoPerfil"
|
||
|
/>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label class="form-control-label" jhiTranslate="dataSurveyApp.usuarioExtra.fechaNacimiento" for="field_fechaNacimiento"
|
||
|
>Fecha Nacimiento</label
|
||
|
>
|
||
|
<div class="d-flex">
|
||
|
<input
|
||
|
id="field_fechaNacimiento"
|
||
|
data-cy="fechaNacimiento"
|
||
|
type="datetime-local"
|
||
|
class="form-control"
|
||
|
name="fechaNacimiento"
|
||
|
formControlName="fechaNacimiento"
|
||
|
placeholder="YYYY-MM-DD HH:mm"
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label class="form-control-label" jhiTranslate="dataSurveyApp.usuarioExtra.estado" for="field_estado">Estado</label>
|
||
|
<select class="form-control" name="estado" formControlName="estado" id="field_estado" data-cy="estado">
|
||
|
<option [ngValue]="null">{{ 'dataSurveyApp.EstadoUsuario.null' | translate }}</option>
|
||
|
<option value="ACTIVE">{{ 'dataSurveyApp.EstadoUsuario.ACTIVE' | translate }}</option>
|
||
|
<option value="SUSPENDED">{{ 'dataSurveyApp.EstadoUsuario.SUSPENDED' | translate }}</option>
|
||
|
</select>
|
||
|
<div *ngIf="editForm.get('estado')!.invalid && (editForm.get('estado')!.dirty || editForm.get('estado')!.touched)">
|
||
|
<small class="form-text text-danger" *ngIf="editForm.get('estado')?.errors?.required" jhiTranslate="entity.validation.required">
|
||
|
This field is required.
|
||
|
</small>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label class="form-control-label" jhiTranslate="dataSurveyApp.usuarioExtra.user" for="field_user">User</label>
|
||
|
<select class="form-control" id="field_user" data-cy="user" name="user" formControlName="user">
|
||
|
<option [ngValue]="null"></option>
|
||
|
<option
|
||
|
[ngValue]="userOption.id === editForm.get('user')!.value?.id ? editForm.get('user')!.value : userOption"
|
||
|
*ngFor="let userOption of usersSharedCollection; trackBy: trackUserById"
|
||
|
>
|
||
|
{{ userOption.id }}
|
||
|
</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label jhiTranslate="dataSurveyApp.usuarioExtra.plantilla" for="field_plantillas">Plantilla</label>
|
||
|
<select class="form-control" id="field_plantillas" data-cy="plantilla" multiple name="plantillas" formControlName="plantillas">
|
||
|
<option
|
||
|
[ngValue]="getSelectedPlantilla(plantillaOption, editForm.get('plantillas')!.value)"
|
||
|
*ngFor="let plantillaOption of plantillasSharedCollection; trackBy: trackPlantillaById"
|
||
|
>
|
||
|
{{ plantillaOption.id }}
|
||
|
</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
<button type="button" id="cancel-save" data-cy="entityCreateCancelButton" class="btn btn-secondary" (click)="previousState()">
|
||
|
<fa-icon icon="ban"></fa-icon> <span jhiTranslate="entity.action.cancel">Cancel</span>
|
||
|
</button>
|
||
|
|
||
|
<button
|
||
|
type="submit"
|
||
|
id="save-entity"
|
||
|
data-cy="entityCreateSaveButton"
|
||
|
[disabled]="editForm.invalid || isSaving"
|
||
|
class="btn btn-primary"
|
||
|
>
|
||
|
<fa-icon icon="save"></fa-icon> <span jhiTranslate="entity.action.save">Save</span>
|
||
|
</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|