mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
24 lines
719 B
HTML
24 lines
719 B
HTML
<ion-header class="main-header">
|
|
|
|
<div class="icon" (click)="close()">
|
|
<ion-icon name="chevron-back" slot="start"></ion-icon>
|
|
</div>
|
|
|
|
<ion-toolbar>
|
|
<ion-title>Entidade Orgânica</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content>
|
|
<div class="main-container">
|
|
<div class="input-text d-flex ion-align-items-center">
|
|
<ion-input [(ngModel)]='findEntity' class="search-input" type="search" placeholder="Pesquisar" (ngModelChange)="filterContact($event)" ></ion-input>
|
|
</div>
|
|
<ul>
|
|
<li *ngFor="let organicEntity of showOrganicEntities" (click)="selectOrganicEntidy(organicEntity.Description)">
|
|
{{ organicEntity.Description }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</ion-content>
|