<%= 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" %>
No students found.