blob: 20ef5b3f95946dc3ea47226db16ea662c8ca21bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<h1><%= t("node_actions.heading") %></h1>
<% if params[:node_id].present? || params[:user_id].present? %>
<p><%= link_to t("node_actions.show_all"), admin_log_path %></p>
<% end %>
<%= will_paginate @actions %>
<table id="node_action_list">
<%= render partial: "node_actions/action_row", collection: @actions, as: :action %>
</table>
<%= will_paginate @actions %>
|