Sha256: b9e6ca6c84ea70ecccfc93f9af1dbffc7d4fdf17c62aab0417f27a57d3f53a80

Contents?: true

Size: 1.06 KB

Versions: 6

Compression:

Stored size: 1.06 KB

Contents

<li id="sortable_<%= user.id %>" class='clearfix record <%= cycle("on", "on-hover") %>'>
  <span class='title'>
    <strong><%= user.username %></strong>
    <span class="preview">
      <%= t('.preview', :who => user.email, :created_at => l(user.created_at, :format => :short)) %>
    </span>
  </span>
  <span class='actions'>
    <%= mail_to user.email, refinery_icon_tag('email_go.png'),
                :title => t('.email_user') %>
    <%= link_to refinery_icon_tag('application_edit.png'),
                refinery.edit_admin_user_path(user),
                :title => t('edit', :scope => 'refinery.admin.users') if current_refinery_user.can_edit?(user) %>
    <%= link_to refinery_icon_tag('delete.png'),
                refinery.admin_user_path(user),
                :class => "cancel confirm-delete",
                :title => t('delete', :scope => 'refinery.admin.users'),
                :method => :delete,
                :confirm => t('message', :scope => 'refinery.admin.delete', :title => user.username) if current_refinery_user.can_delete?(user) %>
  </span>
</li>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
refinerycms-authentication-2.0.5 app/views/refinery/admin/users/_user.html.erb
refinerycms-authentication-2.0.4 app/views/refinery/admin/users/_user.html.erb
refinerycms-authentication-2.0.3 app/views/refinery/admin/users/_user.html.erb
refinerycms-authentication-2.0.2 app/views/refinery/admin/users/_user.html.erb
refinerycms-authentication-2.0.1 app/views/refinery/admin/users/_user.html.erb
refinerycms-authentication-2.0.0 app/views/refinery/admin/users/_user.html.erb