116 lines
3.1 KiB
Plaintext
116 lines
3.1 KiB
Plaintext
@model VirtualTask.Models.Chiamate
|
|
|
|
@{
|
|
ViewData["Title"] = "Details";
|
|
int numChia = -1;
|
|
numChia = Convert.ToInt32(Model.chnumero);
|
|
}
|
|
|
|
<h1>Dettaglio chiamata</h1>
|
|
|
|
<div>
|
|
|
|
<hr />
|
|
<dl class="row">
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chcodazi)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chcodazi)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chserial)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chserial)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chcodese)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chcodese)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chtipo)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chtipo)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chnumero)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@numChia
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chdata)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chdata)
|
|
</dd>
|
|
|
|
|
|
|
|
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chcodimp)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chcodimp)
|
|
</dd>
|
|
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chtchiam)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chtchiam)
|
|
</dd>
|
|
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chstato)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chstato)
|
|
</dd>
|
|
|
|
|
|
|
|
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chrifer)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chrifer)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chtelef)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chtelef)
|
|
</dd>
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chcodseg)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chcodseg)
|
|
</dd>
|
|
|
|
<dt class = "col-sm-2">
|
|
@Html.DisplayNameFor(model => model.chnote)
|
|
</dt>
|
|
<dd class = "col-sm-10">
|
|
@Html.DisplayFor(model => model.chnote)
|
|
</dd>
|
|
<dt class="col-sm-2">
|
|
@Html.DisplayNameFor(model => model.indirizzo)
|
|
</dt>
|
|
<dd class="col-sm-10">
|
|
@Html.DisplayFor(model => model.indirizzo)
|
|
</dd>
|
|
</dl>
|
|
</div>
|
|
<div>
|
|
@Html.ActionLink("Edit", "Edit", new { id = Model.chserial }) |
|
|
<a asp-action="Index">Back to List</a>
|
|
</div>
|