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

Last change on this file since d2e69be was d2e69be, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Add Route Attribute

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[785b8bd]1<app-nav-menu></app-nav-menu>
[ec6ac45]2
3<div class="wrapper">
4 <div>
5 <h2>Здравствени установи</h2>
6 <input type="text" class="form-control" name="lek" placeholder="Пронајди лек">
[4b342bb]7 <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="facilities">
[ec6ac45]8 <thead>
9 <tr>
[4b342bb]10 <th>Име</th>
11 <th>Општина</th>
12 <th>Адреса</th>
13 <th>Тип на установа</th>
14 <th>Е-пошта</th>
15 <th>Телефон</th>
[ec6ac45]16 </tr>
17 </thead>
18 <tbody>
[d2e69be]19 <tr *ngFor="let facility of facilities">
[4b342bb]20 <td>{{ facility.Name }}</td>
[d2e69be]21 <!--
22 <td>{{ facility.Municipality }}</td>
23 <td>{{ facility.Address }}</td>
24 <td>{{ facility.Type }}</td>
25 <td>{{ facility.Email }}</td>
26 <td>{{ facility.Phone }}</td>-->
27 <td>facility.Municipality</td>
28 <td></td>
29 <td></td>
30 <td></td>
31 <td>
32
33 </td>
34
35 </tr>
[ec6ac45]36 </tbody>
37 </table>
38 <nav aria-label="Page navigation example">
39 <ul class="pagination">
40 <li class="page-item">
41 <a class="page-link" href="#" aria-label="Previous">
42 <span aria-hidden="true">&laquo;</span>
43 <span class="sr-only">Previous</span>
44 </a>
45 </li>
46 <li class="page-item"><a class="page-link" href="#">1</a></li>
47 <li class="page-item"><a class="page-link" href="#">2</a></li>
48 <li class="page-item"><a class="page-link" href="#">3</a></li>
49 <li class="page-item">
50 <a class="page-link" href="#" aria-label="Next">
51 <span aria-hidden="true">&raquo;</span>
52 <span class="sr-only">Next</span>
53 </a>
54 </li>
55 </ul>
56 </nav>
57 </div>
58 <div>
59 <h2>Здравствени работници</h2>
60 <input type="text" class="form-control" name="apteka" placeholder="Пронајди аптека">
61 <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true">
62 <thead>
63 <tr>
64 <th>Placeholder1</th>
65 <th>Placeholder2</th>
66 <th>Placeholder3</th>
67 <th>Placeholder4</th>
68 </tr>
69 </thead>
70 <tbody>
71 <tr *ngFor="">
72 <td>data1</td>
73 <td>data2</td>
74 <td>data3</td>
75 <td>data4</td>
76 </tr>
77 </tbody>
78 </table>
79 <nav aria-label="Page navigation example">
80 <ul class="pagination">
81 <li class="page-item">
82 <a class="page-link" href="#" aria-label="Previous">
83 <span aria-hidden="true">&laquo;</span>
84 <span class="sr-only">Previous</span>
85 </a>
86 </li>
87 <li class="page-item"><a class="page-link" href="#">1</a></li>
88 <li class="page-item"><a class="page-link" href="#">2</a></li>
89 <li class="page-item"><a class="page-link" href="#">3</a></li>
90 <li class="page-item">
91 <a class="page-link" href="#" aria-label="Next">
92 <span aria-hidden="true">&raquo;</span>
93 <span class="sr-only">Next</span>
94 </a>
95 </li>
96 </ul>
97 </nav>
98 </div>
[96108d8]99</div>
Note: See TracBrowser for help on using the repository browser.