|
|
@@ -51,28 +51,24 @@ else
|
|
|
<tbody>
|
|
|
@foreach (College college in Model.Obj.Colleges)
|
|
|
{
|
|
|
- <tr data-url="@Url.Action("Details", new { id = college.Id })">
|
|
|
-
|
|
|
- <td>
|
|
|
- @Html.DisplayFor(modelcollege => college.CodeRne)
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- @Html.DisplayFor(modelcollege => college.Libelle)
|
|
|
- <noscript>
|
|
|
- @Html.ActionLink(" > Voir", "Details", new { id = college.Id })
|
|
|
- </noscript>
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- @Html.DisplayFor(modelcollege => college.AdresseComplete)
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- @Html.DisplayFor(modelcollege => college.RestaurationType.Libelle)<br />
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <a href="@Url.Action("Type", "Colleges", new { id = college.Id })">
|
|
|
- <span class="glyphicon glyphicon-pencil fa-2x color1" title="Modifier" style="vertical-align: middle" aria-hidden="true"></span>
|
|
|
- </a>
|
|
|
- </td>
|
|
|
+ <tr>
|
|
|
+ <td>
|
|
|
+ @Html.DisplayFor(modelcollege => college.CodeRne)
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <a href="@Url.Action("Details", "Colleges", new { id = college.Id })">@Html.DisplayFor(modelcollege => college.Libelle)</a>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ @Html.DisplayFor(modelcollege => college.AdresseComplete)
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ @Html.DisplayFor(modelcollege => college.RestaurationType.Libelle)<br />
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <a href="@Url.Action("Type", "Colleges", new { id = college.Id })">
|
|
|
+ <span class="glyphicon glyphicon-pencil fa-2x color1" title="Modifier" style="vertical-align: middle" aria-hidden="true"></span>
|
|
|
+ </a>
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
}
|
|
|
</tbody>
|