14 lines
298 B
Plaintext
14 lines
298 B
Plaintext
<% content_for :title, "Editing student" %>
|
|
|
|
<h1>Editing student</h1>
|
|
|
|
<%= render "form", student: @student %>
|
|
|
|
<br>
|
|
|
|
<div>
|
|
<%= link_to "Show this student", institution_student_path(@institution, @student) %> |
|
|
<%= link_to "Back to students", institution_students_path(@institution) %>
|
|
</div>
|
|
|