<%= @student.lastname %> - <%= @student.firstname %>

<%= link "Editer", to: Routes.student_path(@conn, :edit, @student) %> <%= link "Retour", to: Routes.student_path(@conn, :index) %>

Informations générales

Rendus

<%= if length(@student.students_works) > 0 do %> <%= for work <- @student.students_works do %> <% end %>
Titre Date Actions
<%= work.assignment.title %> <%= work.inserted_at %> <%= link "Télécharger", to: Path.join([ConfientWeb.Endpoint.url(), "uploads", @student.class.name, work.assignment.slug, work.path]), target: "_blank" %>
<% else %>

Aucun devoir rendu

<% end %>