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
319 B
Plaintext

<table class="table">
<tr>
<th>時間</th>
<th>使用帳號</th>
<th>頁面</th>
</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>