|
|
@@ -19,6 +19,9 @@
|
|
|
<th>
|
|
|
@Html.DisplayNameFor(model => model.Id)
|
|
|
</th>
|
|
|
+ <th>
|
|
|
+ @Html.DisplayNameFor(model => model.Libelle)
|
|
|
+ </th>
|
|
|
<th>
|
|
|
@Html.DisplayNameFor(model => model.Adresse)
|
|
|
</th>
|
|
|
@@ -44,9 +47,12 @@
|
|
|
|
|
|
@foreach (var item in Model) {
|
|
|
<tr>
|
|
|
- <th>
|
|
|
+ <td>
|
|
|
@Html.ActionLink(item.Id, "Details", new { id = item.Id })
|
|
|
- </th>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ @Html.DisplayFor(modelItem => item.Libelle)
|
|
|
+ </td>
|
|
|
<td>
|
|
|
@Html.DisplayFor(modelItem => item.AdresseComplete)
|
|
|
</td>
|