You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
794 B
HTML
26 lines
794 B
HTML
<ion-content>
|
|
<div class="head-title">
|
|
<app-generic-header showImage="false" showBack="true" [headerText]="'eit,cei' | translate">
|
|
</app-generic-header>
|
|
</div>
|
|
|
|
<div padding>
|
|
<ion-list>
|
|
<ion-radio-group [(ngModel)]="SelectedServiceType">
|
|
<ion-item *ngFor="let user of familyMemberData">
|
|
<ion-label>{{user.CONTACT_NAME}}</ion-label>
|
|
<ion-radio mode="md" slot="start" [value]="user" (click)='selectedUser()'></ion-radio>
|
|
</ion-item>
|
|
</ion-radio-group>
|
|
</ion-list>
|
|
</div>
|
|
|
|
|
|
</ion-content>
|
|
|
|
<ion-footer>
|
|
<div class="centerDiv" (click)="gotoTransactionsPage()">
|
|
<ion-button class="addEitOkButton" color="customnavy" ion-button>
|
|
{{'vacation-rule, next-label' | translate}}</ion-button>
|
|
</div>
|
|
</ion-footer> |