Sha256: 2ee5fd17346faa346fe7b64228f36194360aff06c821f711f8ec16cb2fbc882a

Contents?: true

Size: 1.22 KB

Versions: 12

Compression:

Stored size: 1.22 KB

Contents

<h2>Users</h2>

<table cellpadding="0" cellspacing="0" id="itemList" class="itemList">
	<tr>
		<th>Login</th>
		<th>Name</th>
		<th>Status</th>
		<th>&nbsp;</th>
	</tr>
	
	<% @users.each_with_index do |user, index| %>	
		<tr class="<%= 'even' if index.modulo(2) == 0 %> hover">
			<td><%= casein_table_cell_link user.login, casein_user_path(user) %></td>
			<td><%= casein_table_cell_link user.name, casein_user_path(user) %></td>
			<td><%= casein_table_cell_link casein_get_access_level_text(user.access_level), casein_user_path(user) %></td>
			<td class="delete">
				<% if user.is_admin? == false || Casein::User.has_more_than_one_admin %>
					<% confirm_message = "Are you sure you want to delete #{user.name}?" %>
			
					<% if user.id == @session_user.id %>
						<% confirm_message += "\n\nWARNING: This is your user account. You will be logged out if you proceed." %>
					<% end %>
				
					<%= link_to(casein_show_row_icon("delete"), casein_user_path(user), :method => :delete, :confirm => confirm_message) %>
				<% end %>
			</td>
		</tr>
	<% end %>
</table>

<%= will_paginate @users %>

<%= content_for :sidebar do %>
  <li><%= link_to "#{casein_show_icon('add')}Add a new user".html_safe, new_casein_user_path %></li>
<% end %>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
casein-3.1.11 app/views/casein/users/index.html.erb
casein-3.1.10 app/views/casein/users/index.html.erb
casein-3.1.9 app/views/casein/users/index.html.erb
casein-3.1.8 app/views/casein/users/index.html.erb
casein-3.1.7 app/views/casein/users/index.html.erb
casein-3.1.6 app/views/casein/users/index.html.erb
casein-3.1.5 app/views/casein/users/index.html.erb
casein-3.1.4 app/views/casein/users/index.html.erb
casein-3.1.3 app/views/casein/users/index.html.erb
casein-3.1.2 app/views/casein/users/index.html.erb
casein-3.1.1 app/views/casein/users/index.html.erb
casein-3.1.0 app/views/casein/users/index.html.erb