Files
yavsc/Yavsc/Views/Project/Details.cshtml
Paul Schneider e95872e161 [WIP/IT] Batch interface & project controller
* the batch don't expose any format consideration for the log file
* a generated project controller, mostly to get a DbSet from db context
2018-06-22 17:52:24 +02:00

103 lines
2.6 KiB
Plaintext

@model Yavsc.Server.Models.IT.Project
@{
ViewData["Title"] = "Details";
}
<h2>Details</h2>
<div>
<h4>Project</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Consent)
</dt>
<dd>
@Html.DisplayFor(model => model.Consent)
</dd>
<dt>
@Html.DisplayNameFor(model => model.DateCreated)
</dt>
<dd>
@Html.DisplayFor(model => model.DateCreated)
</dd>
<dt>
@Html.DisplayNameFor(model => model.DateModified)
</dt>
<dd>
@Html.DisplayFor(model => model.DateModified)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Description)
</dt>
<dd>
@Html.DisplayFor(model => model.Description)
</dd>
<dt>
@Html.DisplayNameFor(model => model.LocalRepo)
</dt>
<dd>
@Html.DisplayFor(model => model.LocalRepo)
</dd>
<dt>
@Html.DisplayNameFor(model => model.OwnerId)
</dt>
<dd>
@Html.DisplayFor(model => model.OwnerId)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Previsional)
</dt>
<dd>
@Html.DisplayFor(model => model.Previsional)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Rejected)
</dt>
<dd>
@Html.DisplayFor(model => model.Rejected)
</dd>
<dt>
@Html.DisplayNameFor(model => model.RejectedAt)
</dt>
<dd>
@Html.DisplayFor(model => model.RejectedAt)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Status)
</dt>
<dd>
@Html.DisplayFor(model => model.Status)
</dd>
<dt>
@Html.DisplayNameFor(model => model.UserCreated)
</dt>
<dd>
@Html.DisplayFor(model => model.UserCreated)
</dd>
<dt>
@Html.DisplayNameFor(model => model.UserModified)
</dt>
<dd>
@Html.DisplayFor(model => model.UserModified)
</dd>
<dt>
@Html.DisplayNameFor(model => model.ValidationDate)
</dt>
<dd>
@Html.DisplayFor(model => model.ValidationDate)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Version)
</dt>
<dd>
@Html.DisplayFor(model => model.Version)
</dd>
</dl>
</div>
<p>
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
<a asp-action="Index">Back to List</a>
</p>