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