<% if notice %>
<%= notice %>
<% end %>

<%= @institution.name %>

<%= link_to "Edit Institution", edit_institution_path(@institution), class: "btn btn-secondary me-2" %> <%= link_to "Back to Institutions", institutions_path, class: "btn btn-outline-light me-2" %> <%= button_to "Destroy Institution", @institution, method: :delete, data: { confirm: "Are you sure?" }, class: "btn btn-danger" %> <%= link_to "➕ New Student", new_institution_student_path(@institution), class: "btn btn-primary ms-2" %>

Students

<% if @students.present? && @students.any? %>
<% @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 = @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" %>
<% end %>
<% else %>

No students found.

<% end %>