Sha256: 5b0570d39389354ed8146cb7fc06dcacda231b91e2fae7d6bddf9807a932845b

Contents?: true

Size: 1.41 KB

Versions: 8

Compression:

Stored size: 1.41 KB

Contents

<div class="toolbar" data-hook="toolbar">
  <ul class="actions">
    <li>
      <p><%= button_link_to t(:new_user), new_object_url, :icon => 'add', :id => 'admin_new_user_link' %></p>
    </li>
  </ul>
  <br class="clear" />
</div>

<h1><%= t(:listing_users) %></h1>

<table class="index" id="listing_users" data-hook>
  <thead>
    <tr data-hook="admin_users_index_headers">
      <th><%= sort_link @search,:email, t(:user), {}, {:title => 'users_email_title'} %></th>
      <th data-hook="admin_users_index_header_actions"></th>
    </tr>
  </thead>
  <tbody>
    <% @users.each do |user|%>
      <tr id="<%= dom_id user %>" data-hook="admin_users_index_rows">
        <td width="350px" class='user_email'><%=link_to user.email, object_url(user) %></td>
        <td data-hook="admin_users_index_row_actions">
          <%= link_to_edit user, :class => 'edit' %> &nbsp;
          <%= link_to_delete user %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

<%= paginate @users %>


<% content_for :sidebar do %>
  <div class="box" data-hook="admin_users_index_search">
    <h3><%= t(:search) %></h3>
    <% @search = User.search %>
    <%= form_for [:admin, @search] do |f| %>
      <p>
        <%= t(:email) %><br />
        <%= f.text_field :email_contains, :size =>18 %>
      </p>
      <div data-hook="admin_users_index_search_buttons">
        <p><%= button t(:search) %></p>
      </div>
    <% end %>
  </div>
<% end %>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
spree_core-0.70.7 app/views/admin/users/index.html.erb
spree_core-0.70.6 app/views/admin/users/index.html.erb
spree_core-0.70.5 app/views/admin/users/index.html.erb
spree_core-0.70.4 app/views/admin/users/index.html.erb
spree_core-0.70.3 app/views/admin/users/index.html.erb
spree_core-0.70.2 app/views/admin/users/index.html.erb
spree_core-0.70.1 app/views/admin/users/index.html.erb
spree_core-0.70.0 app/views/admin/users/index.html.erb