DVGM/app/views/lectures/index.html.erb

18 lines
296 B
Plaintext

<h1>Listing lectures</h1>
<%= link_to 'New Lecture', new_lecture_path %>
<table>
<tr>
<th>Name</th>
<th>Lecturer</th>
</tr>
<% @lectures.each do |lecture| %>
<tr>
<td><%= lecture.name %></td>
<td><%= lecture.lecturer.login %></td>
</tr>
<% end %>
</table>