| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- @model CD67.ModeleMVC.Entity.Viking
- @{
- ViewBag.Title = "Details";
- Layout = "~/Views/Shared/_Layout.cshtml";
- }
- <title>Vikings</title>
- <h1>Details</h1>
- <div>
- <h4>Viking</h4>
- <hr />
- <dl class="dl-horizontal">
- <dt>
- @Html.DisplayNameFor(model => model.Nom)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.Nom)
- </dd>
- <dt>
- @Html.DisplayNameFor(model => model.TypeViking.Libelle)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.TypeViking.Libelle)
- </dd>
- <dt>
- @Html.DisplayNameFor(model => model.Description)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.Description)
- </dd>
- <dt>
- @Html.DisplayNameFor(model => model.DateCreation)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.DateCreation)
- </dd>
- <dt>
- @Html.DisplayNameFor(model => model.DateEdition)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.DateEdition)
- </dd>
- <dt>
- @Html.DisplayNameFor(model => model.costaud)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.costaud)
- </dd>
- <dt>
- @Html.DisplayNameFor(model => model.CasqueCornu)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.CasqueCornu)
- </dd>
- <dt>
- @Html.DisplayNameFor(model => model.NombreVictoires)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.NombreVictoires)
- </dd>
- </dl>
- </div>
- <p>
- @Html.ActionLink("Editer", "Edit", new { id = Model.Id }) |
- @Html.ActionLink("Retour", "Index")
- </p>
|