17 lines
478 B
Plaintext
17 lines
478 B
Plaintext
|
|
<% content_for :title, "Teachers" %>
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<h1 class="mb-4">Teachers</h1>
|
|
<div id="teachers">
|
|
<% @teachers.each do |teacher| %>
|
|
<%= render teacher %>
|
|
<p>
|
|
<%= link_to "Show this teacher", teacher, class: "btn btn-outline-primary btn-sm" %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
<%= link_to "New teacher", new_teacher_path, class: "btn btn-primary mt-3" %>
|
|
</div>
|
|
</div>
|