source: Farmatiko/ClientApp/src/app/dialogs/medicine-dialog/medicine-dialog.component.html

Last change on this file was 28d7d35, checked in by Mile Jankuloski <mile.jankuloski@…>, 3 years ago

Maps, geolocation api, dialogs & more

  • Property mode set to 100644
File size: 1.2 KB
Line 
1<h3>Повеќе информации</h3>
2<table class="table table-striped">
3 <tbody>
4 <tr>
5 <td>Име</td>
6 <td>{{medicine?.name}}</td>
7 </tr>
8 <tr>
9 <td>Форма</td>
10 <td>{{medicine?.form}}</td>
11 </tr>
12 <tr>
13 <td>Пакување</td>
14 <td>{{medicine?.packaging}}</td>
15 </tr>
16 <tr>
17 <td>Цена</td>
18 <td>{{medicine?.price}}</td>
19 </tr>
20 <tr>
21 <td>Јачина</td>
22 <td>{{medicine?.strength}}</td>
23 </tr>
24 <tr>
25 <td>Начин на издавање</td>
26 <td>{{medicine?.wayOfIssuing}}</td>
27 </tr>
28 <tr>
29 <td>Производител</td>
30 <td>{{medicine?.manufacturer}}</td>
31 </tr>
32 </tbody>
33</table>
34<div *ngIf="medicine?.headNames">
35 <h5>Достапен во аптеките на:</h5>
36 <table class="table table-striped">
37 <tbody>
38 <tr *ngFor="let head of medicine?.headNames">
39 <td>{{head}}</td>
40 </tr>
41 </tbody>
42 </table>
43</div>
44<p><button mat-button color="primary" (click)="close()">Затвори</button></p>
Note: See TracBrowser for help on using the repository browser.