Sha256: abbc7b5dd9484d91331b79d896b7398e3c8fcce4a8897f06f300052e6925505b

Contents?: true

Size: 737 Bytes

Versions: 16

Compression:

Stored size: 737 Bytes

Contents

<%= panel title: 'Recent User Activity', body: false do %>
  <ul class="page-stats list-justified nomargin_bottom">
    <li><%= render partial: 'dm_core/admin/shared/header_stats_user_activity' %></li>
  </ul>
  <table class="table table-bordered table-condensed" style="border-top: 1px solid #d5d5d5;">
    <thead>
      <tr>
        <th>Name</th>
        <th style="text-align: center">Last Login</th>
      </tr>
    </thead>
    <tbody>
      <% User.current_account_users.order('user_site_profiles.last_access_at DESC').limit(5).each do |user| %>
        <tr>
          <td><%= user.full_name %></td>
          <td align="center"><%= present(user).last_access %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
<% end %>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
dm_core-4.2.3.10 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.3.9 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.3.8 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.3.7 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.3.6 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.3.5 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.3.4 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.3.3 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.3.2 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.3.1 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.3 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.2.3 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.2.2 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.2.1 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.2 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb
dm_core-4.2.1.5 app/views/dm_core/admin/dashboard/_widget_recent_user_activity.html.erb