Sha256: 3b1483dfa009b76fe6940abee5c1fd28911419c3badf77afc4784a7dfa5c52a5

Contents?: true

Size: 561 Bytes

Versions: 3

Compression:

Stored size: 561 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 => t('are_you_sure_you_want_to_delete_this_record'), :method => :delete %></td>
    </tr>
    <% end %>
  </tbody>
</table>
<br/>

<%= link_to t('new_user'), new_object_url %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spree-0.6.0 app/views/users/index.html.erb
spree-0.7.0 app/views/users/index.html.erb
spree-0.7.1 app/views/users/index.html.erb