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

<%= @institution.name %>

ID: <%= @institution.id %>

<%# Add more institution details here if needed %>
<%= 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" %>

Students

<%= link_to "Add Student", new_institution_student_path(@institution), class: "btn btn-success" %>
<% @institution.students.each do |student| %>
<%= student.first_name %> <%= student.last_name %>

Email: <%= student.email %>

ID: <%= student.id %>

<% end %>