Sha256: efa3b27b5ed8dbf98c5a8bfb05fd876c0c4899aacb4dda6d580c707c006bebcd

Contents?: true

Size: 528 Bytes

Versions: 8

Compression:

Stored size: 528 Bytes

Contents

<h1><%= t("Listing Users") %></h1>

<table class="admin-report">
  <thead>
    <th><%= t("User") %></th>
    <th><%= t("Action") %></th>
  </thead>
  <tbody>
    <%- @users.each do |user|%>
    <tr>
      <td width="350px"><%=link_to user.email, object_url(user) %></td>
      <td>
	<%=link_to t('Edit'), edit_object_url(user) %> |
	<%=link_to t('Destroy'), object_url(user), :confirm => 'Are you sure?', :method => :delete %></td>
    </tr>
    <% end %>
  </tbody>
</table>
<br/>

<%= link_to t('New User'), new_object_url %>

Version data entries

8 entries across 4 versions & 1 rubygems

Version Path
spree-0.4.1 app/views/users/index.html.erb
spree-0.4.0 app/views/users/index.html.erb
spree-0.4.0 app/views/admin/users/index.html.erb
spree-0.4.1 app/views/admin/users/index.html.erb
spree-0.5.0 app/views/admin/users/index.html.erb
spree-0.5.0 app/views/users/index.html.erb
spree-0.5.1 app/views/users/index.html.erb
spree-0.5.1 app/views/admin/users/index.html.erb