42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
|
@using HospitalContracts.ViewModels
|
||
|
@model List<ProcedureViewModel>
|
||
|
@{
|
||
|
ViewData["Title"] = "Procedures";
|
||
|
}
|
||
|
<div class="text-center">
|
||
|
<h1 class="display-4">Процедуры</h1>
|
||
|
</div>
|
||
|
|
||
|
<div class="text-center">
|
||
|
@{
|
||
|
<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>
|