PIbd-22_CourseWork_Hospital.../Polyclinic/HospitalWebView/Views/Home/Drugs.cshtml

42 lines
1.0 KiB
Plaintext

@using HospitalContracts.ViewModels
@model List<DrugViewModel>
@{
ViewBag.SelectedSiteMenuItem = SiteMenuItems.Drugs;
}
<div class="text-center">
<h1 class="display-4">Препараты</h1>
</div>
<div class="text-center">
@{
<p>
<a asp-action="CreateDrug">Создать препарат</a>
</p>
<table class="table">
<thead>
<tr>
<th>
Номер
</th>
<th>
Название препарата
</th>
<th>
Комментарий
</th>
</tr>
</thead>
<tbody>
<td>
1
</td>
<td>
Название препарата
</td>
<td>
Комментарий
</td>
</tbody>
</table>
}
</div>