<%= notice %>

<% content_for :title, "Students" %>
<% @students.each do |student| %>

<%= student.first_name %> <%= student.last_name %>

Place: <%= student.place %>

Institution: <% if student.institution.present? %> <%= link_to student.institution.name, institution_path(student.institution), class: "badge badge-primary" %> <% else %> No institution <% end %>

<%# view path: prefer nested if current page is nested, else use student's institution if present %> <% view_path = if @institution.present? institution_student_path(@institution, student) elsif student.institution.present? institution_student_path(student.institution, student) else student_path(student) end %> <%= link_to "View →", view_path, class: "btn-small" %>
<% end %> <% if @students.empty? %>

No students found.

<% end %>