2024-04-30 16:28:34 +04:00
|
|
|
|
|
|
|
|
|
@{
|
|
|
|
|
ViewData["Title"] = "DeleteTechnicalWork";
|
|
|
|
|
}
|
|
|
|
|
<form method="post">
|
2024-05-29 19:12:54 +04:00
|
|
|
|
<div class="container d-flex justify-content-center align-items-center w-50">
|
2024-04-30 16:28:34 +04:00
|
|
|
|
<div class="card-body">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label> ТО: </label>
|
|
|
|
|
<select id="technicalWork" name="technicalWork" class="form-control" asp-items="@(new SelectList(@ViewBag.TechnicalWorks, "Id", "WorkType", "WorkPrice", "DateStartWork"))"></select>
|
|
|
|
|
</div>
|
|
|
|
|
<br>
|
|
|
|
|
<div>
|
|
|
|
|
<input type="submit" value="Сохранить" class="btn btn-secondary text-center" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|