21 lines
906 B
Plaintext
21 lines
906 B
Plaintext
|
@*
|
||
|
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
||
|
*@
|
||
|
@{
|
||
|
ViewData["Title"] = "DeleteDefect";
|
||
|
}
|
||
|
<form method="post">
|
||
|
<div class="container d-flex justify-content-center align-items-center0 w-25">
|
||
|
<div class="card-body">
|
||
|
<div class="form-group">
|
||
|
<label class="u-label u-text-custom-color-1 u-label-1">Неисправности: </label>
|
||
|
<select id="defect" name="defect" class="form-control" asp-items="@(new SelectList(@ViewBag.Defects, "Id", "DefectType", "DefectPrice"))"></select>
|
||
|
</div>
|
||
|
<br>
|
||
|
<div class="u-container-layout u-container-layout-2">
|
||
|
<input type="submit" value="Сохранить" class="btn btn-secondary text-center d-flex justify-content-md-center" />
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|