|
|
|
@@ -11,7 +11,7 @@ |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="mb-3"> |
|
|
|
<label for="d" class="form-label">{{ 'form.contact' | translate }}:</label> |
|
|
|
<label class="form-label">{{ 'form.contact' | translate }}:</label> |
|
|
|
<app-search-select #contactSearchSelect |
|
|
|
[formId]="'contactIri'" |
|
|
|
[formLabelLangKey]="'form.product'" |
|
|
|
@@ -29,7 +29,11 @@ |
|
|
|
<div class="d-flex mb-3"> |
|
|
|
<div class="form-check me-3" *ngFor="let type of contactTypes; let i = index"> |
|
|
|
<input type="radio" class="form-check-input" id="radio-{{ type }}" formControlName="contactType" [value]="type" /> |
|
|
|
<label for="radio-{{ type }}" class="form-check-label">{{ getContactTypeTranslationKey(type) | translate }}</label> |
|
|
|
<label for="radio-{{ type }}" class="form-check-label bi" [class.bi-people]="type === 'personal'" |
|
|
|
[class.bi-telephone]="type === 'phone'" |
|
|
|
[class.bi-envelope]="type === 'email'"> |
|
|
|
{{ getContactTypeTranslationKey(type) | translate }} |
|
|
|
</label> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|