<%= @class.name %>
<%= link "Editer", to: Routes.class_path(@conn, :edit, @class) %>
<%= link "Retour", to: Routes.class_path(@conn, :index) %>
Liste des élèves
<%= for student <- @class.students do %>
    - <%= link "#{student.lastname} - #{student.firstname}", to: Routes.student_path(@conn, :show, student) %>
 
<% end %>