Revert "add ticket"

This reverts commit 3781272615.
This commit is contained in:
2024-08-01 15:58:59 +03:30
parent 3781272615
commit 075e75e62d
12 changed files with 10 additions and 508 deletions

View File

@ -1,64 +0,0 @@
@model WebApplication1.Models.ticket
@{
ViewBag.Title = "Delete";
}
<h2>Delete</h2>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>ticket</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.priority)
</dt>
<dd>
@Html.DisplayFor(model => model.priority)
</dd>
<dt>
@Html.DisplayNameFor(model => model.senderid)
</dt>
<dd>
@Html.DisplayFor(model => model.senderid)
</dd>
<dt>
@Html.DisplayNameFor(model => model.status)
</dt>
<dd>
@Html.DisplayFor(model => model.status)
</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>