Добавил тестовых рецептов на форму редактирования курса
This commit is contained in:
parent
4c3d34d57a
commit
ea74b106f4
@ -1,7 +1,4 @@
|
||||
@*
|
||||
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
||||
*@
|
||||
@{
|
||||
@{
|
||||
ViewBag.SelectedSiteMenuItem = SiteMenuItems.Course;
|
||||
}
|
||||
<form class="d-flex flex-column" method="post">
|
||||
@ -22,7 +19,13 @@
|
||||
<div class="col-8">
|
||||
<select id="recipeId" name="recipeId">
|
||||
<option value="">Выберите рецепт</option>
|
||||
<option value="0">Какой-то рецепт</option>
|
||||
@{
|
||||
int count = 10;
|
||||
for (int i = 0; i < count; i++)
|
||||
{
|
||||
<option value="@i">Какой-то рецепт @i</option>
|
||||
}
|
||||
}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user