47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
@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> |