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

16 lines
311 B
Plaintext

<table class="w3-table w3-striped w3-bordered">
<tr>
<th>Name</th>
</tr>
<% @users.each do |user| %>
<tr>
<td><%= user.login %></td>
</tr>
<% end %>
</table>
<div class="w3-center w3-margin">
<%= link_to 'New Student', new_user_path, :class => "w3-button w3-light-blue" %>
</div>