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

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>
<table>
<table class="table">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">DaysCount</th>
<th scope="col">PillsPerDay</th>
<th scope="col">Comment</th>
<th scope="col">Recipe</th>
<th scope="col">Номер</th>
<th scope="col">Количество дней</th>
<th scope="col">Количество препаратов в день</th>
<th scope="col">Комментарий</th>
<th scope="col">Рецепт-комментарий</th>
</tr>
</thead>
<tbody>

View File

@ -9,11 +9,11 @@
<div class="text-center">
@{
if (Model == null)
{
<h3 class="display-4">Авторизируйтесь</h3>
return;
}
// if (Model == null)
// {
// <h3 class="display-4">Авторизируйтесь</h3>
// return;
// }
<p>
<a asp-action="CreateMedicament">Создать препарат</a>
</p>
@ -32,23 +32,7 @@
</tr>
</thead>
<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>
</table>
}