Sha256: bca0e118664f1b8e8959125a4f11a4a62bcfe06a1110a420bb6815318e8db107
Contents?: true
Size: 597 Bytes
Versions: 1
Compression:
Stored size: 597 Bytes
Contents
<table id="translations"> <tr> <th>Login</th> <th>E-Mail</th> <th colspan="3"></th> </tr> <% for user in @users %> <tr> <td><%=h user.login %></td> <td><%=h user.email %></td> <td><%= link_to "Show", :action => 'show', :id => user %></td> <td><%= link_to "Edit", :action => 'edit', :id => user %></td> <td><%= link_to "Destroy", :action => 'destroy', :id => user, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= will_paginate @users %> <br /> <%= link_to "Create new user", :action => "new" %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
talia_core-0.4.2 | generators/talia_admin/templates/views/admin/users/index.html.erb |