This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
orbit-4-1/app/views/admin/user_actions/index.html.erb

17 lines
391 B
Plaintext
Raw Normal View History

2013-05-23 03:55:57 +00:00
<table class="table">
<tr>
<th><%= I18n.t 'user_action.time' %></th>
<th><%= I18n.t 'user_action.name' %></th>
<th><%= I18n.t 'user_action.page' %></th>
2013-05-23 03:55:57 +00:00
</tr>
<% @user_actions.each do |user_action| %>
<tr>
<td><%= user_action.created_at %></td>
<td><%= user_action.user.name %></td>
<td><%= user_action.page %></td>
</tr>
<% end %>
</table>