Vmeda.Online/src/addons/userprofilefield/checkbox/component/addon-user-profile-field-checkbox.html
2023-02-16 16:05:56 +01:00

23 lines
719 B
HTML

<!-- Render (no edit). -->
<ion-item *ngIf="!edit && field && field.name">
<ion-label>
<p class="item-heading">{{ field.name }}</p>
<p *ngIf="value != '0'">
{{ 'core.yes' | translate }}
</p>
<p *ngIf="value == '0'">
{{ 'core.no' | translate }}
</p>
</ion-label>
</ion-item>
<!-- Edit. -->
<ion-item *ngIf="edit && field && field.shortname && form" [formGroup]="form">
<ion-label>
<span [core-mark-required]="required">{{ field.name }}</span>
<core-input-errors [control]="form.controls[modelName]"></core-input-errors>
</ion-label>
<ion-checkbox item-end [formControlName]="modelName">
</ion-checkbox>
</ion-item>