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,55 +0,0 @@
@model WebApplication1.Models.ticket
@{
ViewBag.Title = "Create";
}
<h2>Create</h2>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>ticket</h4>
<hr />
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
<div class="form-group">
@Html.LabelFor(model => model.title, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.title, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.title, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.content, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.TextAreaFor(model => model.content, new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.content, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.priority, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
<select name="priority" class="form-control">
<Option value= 1>Urgant</Option>
<Option value= 2>Important</Option>
<Option value= 3>Notmal</Option>
</select>
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>
</div>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>