Rev | Line | |
---|
[ef1219a] | 1 |
|
---|
[785b8bd] | 2 | <app-nav-menu></app-nav-menu>
|
---|
[ec6ac45] | 3 |
|
---|
[ef1219a] | 4 | <mat-tab-group mat-stretch-tabs>
|
---|
[e42f61a] | 5 | <mat-tab class="tab" label="Здравствени установи">
|
---|
[ef1219a] | 6 | <div class="wrapper">
|
---|
| 7 | <div class="header">
|
---|
[ec6ac45] | 8 | <h2>Здравствени установи</h2>
|
---|
[ef1219a] | 9 | <mat-form-field>
|
---|
[ee137aa] | 10 | <input matInput (keyup)="applyFilterFacilities($event.target.value)" placeholder="Пронајди установа">
|
---|
[ef1219a] | 11 | </mat-form-field>
|
---|
[c73269d] | 12 | </div>
|
---|
[ee137aa] | 13 | <table class='table table-striped' aria-labelledby="tableLabel" *ngIf="true">
|
---|
| 14 | <thead>
|
---|
| 15 | <tr>
|
---|
| 16 | <th>Име</th>
|
---|
| 17 | <th>Општина</th>
|
---|
| 18 | <th>Адреса</th>
|
---|
| 19 | <th>Тип</th>
|
---|
| 20 | <th>Е-пошта</th>
|
---|
| 21 | <th>Телефон</th>
|
---|
| 22 | </tr>
|
---|
| 23 | </thead>
|
---|
| 24 | <tbody>
|
---|
| 25 | <tr *ngFor="let facility of filteredFacilities">
|
---|
| 26 | <td><a (click)="openFacilityDialog(facility)">{{ facility.name }}</a></td>
|
---|
| 27 | <td>{{ facility.municipality }}</td>
|
---|
| 28 | <td>{{ facility.address }}</td>
|
---|
| 29 | <td>{{ facility.type }}</td>
|
---|
| 30 | <td>{{ facility.email }}</td>
|
---|
| 31 | <td>{{ facility.phone }}</td>
|
---|
| 32 | </tr>
|
---|
| 33 | </tbody>
|
---|
| 34 | </table>
|
---|
[ef1219a] | 35 | </div>
|
---|
| 36 | </mat-tab>
|
---|
[e42f61a] | 37 | <mat-tab class="tab" label="Здравствени работници">
|
---|
[ef1219a] | 38 | <div class="wrapper">
|
---|
| 39 | <div class="header">
|
---|
[ec6ac45] | 40 | <h2>Здравствени работници</h2>
|
---|
[ef1219a] | 41 | <mat-form-field>
|
---|
[de18858] | 42 | <input matInput (keyup)="applyFilterWorkers($event.target.value)" placeholder="Пронајди работник">
|
---|
[ef1219a] | 43 | </mat-form-field>
|
---|
| 44 | </div>
|
---|
[ee137aa] | 45 | <table class='table table-striped' aria-labelledby="tableLabel" *ngIf="true">
|
---|
| 46 | <thead>
|
---|
| 47 | <tr>
|
---|
| 48 | <th>Име</th>
|
---|
| 49 | <th>Гранка</th>
|
---|
| 50 | <th>Установа</th>
|
---|
| 51 | <th>Назив</th>
|
---|
| 52 | </tr>
|
---|
| 53 | </thead>
|
---|
| 54 | <tbody>
|
---|
| 55 | <tr *ngFor="let worker of filteredWorkers">
|
---|
| 56 | <td><a (click)="openWorkerDialog(worker)">{{ worker.name }}</a></td>
|
---|
| 57 | <td>{{ worker.branch }}</td>
|
---|
| 58 | <td>{{ worker.facility }}</td>
|
---|
| 59 | <td>{{ worker.title }}</td>
|
---|
| 60 | </tr>
|
---|
| 61 | </tbody>
|
---|
| 62 | </table>
|
---|
[ec6ac45] | 63 | </div>
|
---|
[ef1219a] | 64 | </mat-tab>
|
---|
[58fa654] | 65 | </mat-tab-group>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.