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 = @institution.present? ? institution_student_path(@institution, student) : (student.institution.present? ? institution_student_path(student.institution, student) : student_path(student)) %> <%= link_to "View →", view_path, class: "btn-small" %>No students found.
<% end %>