|
|
@@ -207,6 +207,58 @@
|
|
|
</table>
|
|
|
</div>
|
|
|
|
|
|
+<legend>
|
|
|
+ Actions Educatives
|
|
|
+</legend>
|
|
|
+
|
|
|
+<div>
|
|
|
+ <table class="datatable table">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>
|
|
|
+ Numéro
|
|
|
+ </th>
|
|
|
+ <th>
|
|
|
+ Nom
|
|
|
+ </th>
|
|
|
+ <th>
|
|
|
+ Nb.Elèves
|
|
|
+ </th>
|
|
|
+ <th>
|
|
|
+ Axe
|
|
|
+ </th>
|
|
|
+ <th>
|
|
|
+ Thematique
|
|
|
+ </th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ @foreach (ActionEduCollege item in college.ActionsEduColleges)
|
|
|
+ {
|
|
|
+ <tr>
|
|
|
+ <td>
|
|
|
+ @Html.DisplayFor(model => item.ActionEdu.Numero)
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ @Html.DisplayFor(model => item.ActionEdu.Nom)
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ @Html.DisplayFor(model => item.NbEleves)
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ @Html.DisplayFor(model => item.ActionEdu.ActionEduThematique.ActionEduAxe.Nom)
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ @Html.DisplayFor(model => item.ActionEdu.ActionEduThematique.Nom)
|
|
|
+ </td>
|
|
|
+
|
|
|
+ </tr>
|
|
|
+ }
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+</div>
|
|
|
+
|
|
|
+
|
|
|
@if (Model.Acces == ModeAcces.Suppression)
|
|
|
{
|
|
|
using (Html.BeginForm())
|