Delete.cshtml
806 bytes
| 1 | @using App.BLL.DTO |
|---|---|
| 2 | @model AdminDeleteViewModel<BudgetCategoryBllDto> |
| 3 | |
| 4 | <h1>@Localizer["Delete"]</h1> |
| 5 | |
| 6 | <h3>@Localizer["AreYouSure"]</h3> |
| 7 | <div> |
| 8 | <h4>@Localizer["BudgetCategory"]</h4> |
| 9 | <hr /> |
| 10 | <dl class="row"> |
| 11 | <dt class="col-sm-2">@Localizer["Name"]</dt> |
| 12 | <dd class="col-sm-10">@Model.Item.Name</dd> |
| 13 | |
| 14 | <dt class="col-sm-2">@Localizer["Trip"]</dt> |
| 15 | <dd class="col-sm-10">@Model.Item.Trip?.Name</dd> |
| 16 | |
| 17 | <dt class="col-sm-2">@Localizer["PlannedAmount"]</dt> |
| 18 | <dd class="col-sm-10">@Model.Item.PlannedAmount</dd> |
| 19 | </dl> |
| 20 | |
| 21 | <form asp-action="Delete"> |
| 22 | <input type="hidden" asp-for="Item.Id" /> |
| 23 | <input type="submit" value="@Localizer["Delete"]" class="btn btn-danger" /> | |
| 24 | <a asp-action="Index">@Localizer["Back"]</a> |
| 25 | </form> |
| 26 | </div> |
| 27 | |