DVGM/app/views/users/index_lecturer.html.erb

16 lines
219 B
Plaintext

<h1>Listing students</h1>
<%= link_to 'New Student', new_user_path %>
<table>
<tr>
<th>Name</th>
</tr>
<% @users.each do |user| %>
<tr>
<td><%= user.login %></td>
</tr>
<% end %>
</table>