17 lines
382 B
Plaintext
17 lines
382 B
Plaintext
<p style="color: green"><%= notice %></p>
|
|
|
|
<% content_for :title, "Students" %>
|
|
|
|
<h1>Students</h1>
|
|
|
|
<div id="students">
|
|
<% @students.each do |student| %>
|
|
<%= render student %>
|
|
<p>
|
|
<%= link_to "Show this student", institution_student_path(@institution, student) %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= link_to "New student", new_institution_student_path(@institution) %>
|