PIbd-21_CourseWork_Polyclin.../Polyclinic/PolyclinicWebView/Views/Home/Procedures.cshtml

47 lines
1.1 KiB
Plaintext
Raw Normal View History

@using PolyclinicContracts.ViewModels
@model List<ProcedureViewModel>
@{
ViewData["Title"] = "Procedures";
}
<div class="text-center">
<h1 class="display-4">Процедуры</h1>
</div>
<div class="text-center">
@{
// if (Model == null)
// {
// <h3 class="display-4">Авторизируйтесь</h3>
// return;
// }
<p>
<a asp-action="CreateProcedure">Создать процедуру</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>