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,58 +0,0 @@
@model WebApplication1.Models.ticket
@{
ViewBag.Title = "Details";
}
<h2>Details</h2>
<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>
</div>
<p>
@Html.ActionLink("Edit", "Edit", new { id = Model.ID }) |
@Html.ActionLink("Back to List", "Index")
</p>