forked from bofh/fetsite
22 lines
568 B
Plaintext
Executable File
22 lines
568 B
Plaintext
Executable File
<ul class="breadcrumb">
|
|
<li>
|
|
<%= link_to "Admin" , :controller =>"config" , :action => "index"%>
|
|
</li>
|
|
</ul>
|
|
<table class="table table-striped">
|
|
<% @users.each do |user|%>
|
|
<tr><th>E-Mail</th><th>Rollen</th><th>Actions</th>
|
|
</tr><tr>
|
|
<td>
|
|
<%= user.email %></td><td><ul>
|
|
<% user.roles.each do |role| %>
|
|
<li><%= role.name%></li>
|
|
<% end %></ul></td>
|
|
<td>
|
|
<%= link_to 'MK fetadmin', user_add_role_path(user, "fetadmin")%>
|
|
<%= link_to 'MK fetuser', user_add_role_path(user, "fetuser")%>
|
|
<%= link_to 'doconfirm', user_do_confirm_path(user)%>
|
|
</td>
|
|
</tr><% end %>
|
|
</table>
|