Sha256: f980ad4d2dbfc9f7c32f287ea0a00fc520a0d7f3a5d4a1985bfeb9f9dad3d5a6

Contents?: true

Size: 1.1 KB

Versions: 12

Compression:

Stored size: 1.1 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 => "384x450"
			},
			:if_permitted_to => [:new, :alchemy_admin_users]
		}
	]
) %>

<%- 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 class="role"><%= Alchemy::User.human_attribute_name('role') %></th>
		<th class="tools"></th>
	</tr>
	<%= render @users %>
</table>
<%= render 'alchemy/admin/partials/pagination_links', :items => @users %>

<%- elsif params[:query] -%>

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

<%- end -%>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
alchemy_cms-2.1.6 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.1.5 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.1.4 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.1.3 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.1.2 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.1.1 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.1 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.1.rc6 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.1.rc5 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.1.rc4 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.1.rc3 app/views/alchemy/admin/users/index.html.erb
alchemy_cms-2.1.rc2 app/views/alchemy/admin/users/index.html.erb