Выпилил RecipeId из формы курсов
This commit is contained in:
parent
71932a25d7
commit
ad183a589e
@ -15,29 +15,13 @@
|
|||||||
<div class="col-3">Коментарий:</div>
|
<div class="col-3">Коментарий:</div>
|
||||||
<div class="col-8"><textarea id="comment" name="comment"></textarea></div>
|
<div class="col-8"><textarea id="comment" name="comment"></textarea></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row mb-5">
|
|
||||||
<div class="col-3">Рецепт:</div>
|
|
||||||
<div class="col-8">
|
|
||||||
<select id="recipeId" name="recipeId">
|
|
||||||
<option value="">Выберите рецепт</option>
|
|
||||||
@{
|
|
||||||
int count = 10;
|
|
||||||
for (int i = 0; i < count; i++)
|
|
||||||
{
|
|
||||||
<option value="@i">Какой-то рецепт @i</option>
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row mb-5">
|
<div class="row mb-5">
|
||||||
<div class="col-3 d-flex align-content-center">
|
<div class="col-3 d-flex align-content-center">
|
||||||
<h5 class="me-2">Болезни</h5>
|
<h5 class="me-2">Болезни</h5>
|
||||||
<select id="diagnoseId" name="diagnoseId" class="me-2">
|
<select id="diagnoseId" name="diagnoseId" class="me-2">
|
||||||
<option value="">Выберите болезнь</option>
|
<option value="">Выберите болезнь</option>
|
||||||
@{
|
@{
|
||||||
count = 10;
|
for (int i = 0; i < 10; i++)
|
||||||
for (int i = 0; i < count; i++)
|
|
||||||
{
|
{
|
||||||
<option value="@i">Какая-то противная болезнь @i</option>
|
<option value="@i">Какая-то противная болезнь @i</option>
|
||||||
}
|
}
|
||||||
@ -51,8 +35,7 @@
|
|||||||
<div class="row mb-5 overflow-auto" style="max-height: 100px; max-width: 500px;">
|
<div class="row mb-5 overflow-auto" style="max-height: 100px; max-width: 500px;">
|
||||||
<ol>
|
<ol>
|
||||||
@{
|
@{
|
||||||
count = 7;
|
for (int i = 0; i < 7; i++)
|
||||||
for (int i = 0; i < count; i++)
|
|
||||||
{
|
{
|
||||||
<li class="mb-2 ps-1 ms-1">
|
<li class="mb-2 ps-1 ms-1">
|
||||||
<a asp-action="Course" class="text-decoration-none">
|
<a asp-action="Course" class="text-decoration-none">
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
<th scope="col">Количество дней</th>
|
<th scope="col">Количество дней</th>
|
||||||
<th scope="col">Количество препаратов в день</th>
|
<th scope="col">Количество препаратов в день</th>
|
||||||
<th scope="col">Комментарий</th>
|
<th scope="col">Комментарий</th>
|
||||||
<th scope="col">Рецепт-комментарий</th>
|
|
||||||
<th scope="col"></th>
|
<th scope="col"></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@ -28,7 +27,6 @@
|
|||||||
<td>12</td>
|
<td>12</td>
|
||||||
<td>3</td>
|
<td>3</td>
|
||||||
<td>Очень хороший курс приема</td>
|
<td>Очень хороший курс приема</td>
|
||||||
<td>Рецепт отличный</td>
|
|
||||||
<td class="d-flex">
|
<td class="d-flex">
|
||||||
<a class="btn btn-danger me-1" title="Удалить">
|
<a class="btn btn-danger me-1" title="Удалить">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-trash-fill" viewBox="0 0 16 16">
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-trash-fill" viewBox="0 0 16 16">
|
||||||
|
Loading…
Reference in New Issue
Block a user