2024-05-27 00:50:40 +04:00
|
|
|
@using UniversityContracts.ViewModels
|
|
|
|
@model List<PlanOfStudyViewModel>
|
|
|
|
@{
|
|
|
|
ViewData["Title"] = "Управление планами обучений";
|
2024-04-29 19:06:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
<div class="text-center">
|
2024-05-27 00:50:40 +04:00
|
|
|
<h2 class="display-4">@ViewData["Title"]</h2>
|
|
|
|
</div>
|
2024-04-29 19:06:11 +04:00
|
|
|
|
2024-05-27 00:50:40 +04:00
|
|
|
<form asp-action="CreatePlanOfStudy" method="post">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-4">Профиль:</div>
|
|
|
|
<div class="col-8">
|
|
|
|
<input type="text" name="profile" id="profile" class="form-control" />
|
|
|
|
</div>
|
2024-04-29 19:06:11 +04:00
|
|
|
</div>
|
2024-05-27 00:50:40 +04:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-4">Форма обучения:</div>
|
|
|
|
<div class="col-8">
|
|
|
|
<input name="formOfStudy" id="formOfStudy" class="form-control" multiple asp-items="ViewBag.PlanOfStudys"></input>
|
|
|
|
</div>
|
2024-04-29 19:06:11 +04:00
|
|
|
</div>
|
2024-05-27 00:50:40 +04:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-8"></div>
|
|
|
|
<div class="col-4 mt-2">
|
2024-05-27 22:35:38 +04:00
|
|
|
<input type="submit" value="Создать план обучения" class="btn btn-primary" />
|
2024-05-27 00:50:40 +04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2024-05-27 01:11:57 +04:00
|
|
|
<th>Id</th>
|
2024-05-27 00:50:40 +04:00
|
|
|
<th>Profile</th>
|
|
|
|
<th>FormOfStudy</th>
|
|
|
|
<th>Actions</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@foreach (var planOfStudy in Model)
|
|
|
|
{
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
@Html.DisplayFor(modelItem => planOfStudy.Id)
|
|
|
|
</td>
|
|
|
|
<td>
|
2024-05-27 17:32:21 +04:00
|
|
|
@Html.DisplayFor(modelItem => planOfStudy.Profile)
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@Html.DisplayFor(modelItem => planOfStudy.FormOfStudy)
|
|
|
|
</td>
|
|
|
|
<td>
|
2024-05-27 22:35:38 +04:00
|
|
|
<div class="btn-group">
|
|
|
|
<a asp-controller="Home" asp-action="InfoPlanOfStudy" asp-route-id="@planOfStudy.Id" class="btn btn-warning">Изменить</a>
|
|
|
|
<form asp-controller="Home" asp-action="DeletePlanOfStudy" method="post">
|
|
|
|
<input type="hidden" name="id" value="@planOfStudy.Id" />
|
|
|
|
<button type="submit" class="btn btn-danger">Удалить</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2024-05-27 00:50:40 +04:00
|
|
|
</td>
|
|
|
|
</tr>
|
2024-05-27 17:32:21 +04:00
|
|
|
}
|
2024-05-27 00:50:40 +04:00
|
|
|
</tbody>
|
|
|
|
</table>
|