@foreach (ActionEdu item in Model.Obj.ActionsEdu.OrderBy(a => a.ActionEduThematique.ActionEduAxe.Ordre).ThenBy(a => a.ActionEduThematique.Ordre).ThenBy(a => a.Ordre))
{
if (item.ActionEduThematique.ActionEduAxe.Id != cur_axe_id){
cur_axe_id = item.ActionEduThematique.ActionEduAxe.Id;
@item.ActionEduThematique.ActionEduAxe.Nom
}
if (item.ActionEduThematique.Id != cur_th_id)
{
cur_th_id = item.ActionEduThematique.Id;
@item.ActionEduThematique.Nom
}
}