поправила препараты и курсы приема во вьюшках

This commit is contained in:
Елена Бакальская 2024-04-30 12:44:56 +04:00
parent 5c9ec6d39c
commit bee93877d1
2 changed files with 12 additions and 28 deletions

View File

@ -4,14 +4,14 @@
@{ @{
} }
<div> <div>
<table> <table class="table">
<thead> <thead>
<tr> <tr>
<th scope="col">ID</th> <th scope="col">Номер</th>
<th scope="col">DaysCount</th> <th scope="col">Количество дней</th>
<th scope="col">PillsPerDay</th> <th scope="col">Количество препаратов в день</th>
<th scope="col">Comment</th> <th scope="col">Комментарий</th>
<th scope="col">Recipe</th> <th scope="col">Рецепт-комментарий</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>

View File

@ -9,11 +9,11 @@
<div class="text-center"> <div class="text-center">
@{ @{
if (Model == null) // if (Model == null)
{ // {
<h3 class="display-4">Авторизируйтесь</h3> // <h3 class="display-4">Авторизируйтесь</h3>
return; // return;
} // }
<p> <p>
<a asp-action="CreateMedicament">Создать препарат</a> <a asp-action="CreateMedicament">Создать препарат</a>
</p> </p>
@ -32,23 +32,7 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem =>
item.Id)
</td>
<td>
@Html.DisplayFor(modelItem =>
item.Name)
</td>
<td>
@Html.DisplayFor(modelItem =>
item.Comment)
</td>
</tr>
}
</tbody> </tbody>
</table> </table>
} }