Sha256: d509ec719c8dd0bf18487eb94ace83efe5ee41977328913834050bc66da07a97
Contents?: true
Size: 487 Bytes
Versions: 1
Compression:
Stored size: 487 Bytes
Contents
<h1>Listing Users</h1> <table class="admin-report"> <thead> <th>User</th> <th>Action</th> </thead> <tbody> <%- @users.each do |user|%> <tr> <td width="350px"><%=link_to user.email, object_url(user) %></td> <td> <%=link_to 'Edit', edit_object_url(user) %> | <%=link_to 'Destroy', object_url(user), :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </tbody> </table> <br/> <%= link_to 'New User', new_object_url %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree-0.2.0 | app/views/users/index.html.erb |