respond (buggy)

This commit is contained in:
2024-08-02 22:08:18 +03:30
parent fbb2d406cb
commit 780bfc94c8
18 changed files with 965 additions and 10 deletions

View File

@ -0,0 +1,56 @@
@model WebApplication1.Models.response
@{
ViewBag.Title = "Delete";
}
<h2>Delete</h2>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>response</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.title)
</dt>
<dd>
@Html.DisplayFor(model => model.title)
</dd>
<dt>
@Html.DisplayNameFor(model => model.content)
</dt>
<dd>
@Html.DisplayFor(model => model.content)
</dd>
<dt>
@Html.DisplayNameFor(model => model.adminid)
</dt>
<dd>
@Html.DisplayFor(model => model.adminid)
</dd>
<dt>
@Html.DisplayNameFor(model => model.ticketid)
</dt>
<dd>
@Html.DisplayFor(model => model.ticketid)
</dd>
</dl>
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
@Html.ActionLink("Back to List", "Index")
</div>
}
</div>