Liste des élèves

<%= link "Ajouter un élève", to: Routes.student_path(@conn, :new) %> | <%= link "Ajouter un lot d'élèves", to: Routes.student_path(@conn, :bulkform) %>
<%= for student <- @students do %> <% end %>
Prénom Nom Classe Actions
<%= student.lastname %> <%= student.firstname %> <%= link student.class.name, to: Routes.class_path(@conn, :show, student.class.id) %> <%= link "Voir", to: Routes.student_path(@conn, :show, student) %> <%= link "Editer", to: Routes.student_path(@conn, :edit, student) %> <%= link "Supprimer", to: Routes.student_path(@conn, :delete, student), method: :delete, data: [confirm: "Vous êtes sur ?"] %>