Sha256: 42457d688a3a394b01988438c2e0644854f6eefd79d9f9ddaebc9d3042bbae39

Contents?: true

Size: 1.31 KB

Versions: 8

Compression:

Stored size: 1.31 KB

Contents

<%= toolbar(
  :buttons => [
    {
      :icon => 'user_add',
      :label => _t('create_user'),
      :url => alchemy.new_admin_user_path,
      :title => _t('create_user'),
      :overlay_options => {
        :title => _t('create_user'),
        :size => "420x560"
      },
      :if_permitted_to => [:new, :alchemy_admin_users]
    }
  ]
) %>

<div id="archive_all">
<% if @users.any? %>

  <table class="list" id="user_list">
    <tr>
      <th class="icon"></th>
      <th class="login_status"></th>
      <th class="login"><%= Alchemy::User.human_attribute_name('login') %></th>
      <th class="name"><%= Alchemy::User.human_attribute_name('firstname') %></th>
      <th><%= Alchemy::User.human_attribute_name('lastname') %></th>
      <th class="email"><%= Alchemy::User.human_attribute_name('email') %></th>
      <th><%= Alchemy::User.human_attribute_name('language') %></th>
      <th><%= Alchemy::User.human_attribute_name('last_sign_in_at') %></th>
      <th class="role"><%= Alchemy::User.human_attribute_name('role') %></th>
      <th class="tools"></th>
    </tr>
    <%= render :partial => 'alchemy/admin/users/user', :collection => @users %>
  </table>

  <%= paginate @users %>

<% elsif params[:query] %>

  <div class="info">
    <%= render_icon('info') %>
    <%= _t('No users found') %>
  </div>

<% end %>
</div>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
alchemy_cms-2.5.3.1 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.5.3 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.5.2.2 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.5.2.1 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.5.2 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.5.1 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.5.0 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.5.0.rc3 app/views/alchemy/admin/users/index.html.erb