source: Farmatiko/ClientApp/src/app/counter/counter.component.html@ afc9a9a

Last change on this file since afc9a9a was 63d885e, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago

Merge branch 'master' of https://develop.finki.ukim.mk/git/farmatiko

  • Property mode set to 100644
File size: 2.0 KB
Line 
1
2<app-nav-menu></app-nav-menu>
3
4<mat-tab-group mat-stretch-tabs>
5 <mat-tab class="tab" label="Здравствени установи">
6 <div class="wrapper">
7 <div class="header">
8 <h2>Здравствени установи</h2>
9 <mat-form-field>
10 <input matInput (keyup)="applyFilterFacilities($event.target.value)" placeholder="Пронајди установа">
11 </mat-form-field>
12 </div>
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>
35 </div>
36 </mat-tab>
37 <mat-tab class="tab" label="Здравствени работници">
38 <div class="wrapper">
39 <div class="header">
40 <h2>Здравствени работници</h2>
41 <mat-form-field>
42 <input matInput (keyup)="applyFilterWorkers($event.target.value)" placeholder="Пронајди работник">
43 </mat-form-field>
44 </div>
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>
63 </div>
64 </mat-tab>
65 </mat-tab-group>
Note: See TracBrowser for help on using the repository browser.