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