我有一张有很多授权的桌子:
(...)
<% @authorizations.each do |authorization| %>
<tr>
<td><%= check_box_tag 'authorization_checked' %></td>
<td><%= authorization.number_contract %></td>
</tr>
<% end %>
我标记复选框,然后单击按钮:
<%= link_to 'Reserve', new_refinance_path(:search_func_cpf => params[:search_func_cpf], :search_func_registry => params[:search_func_registry]) %>
单击按钮后如何仅通过检查其他视图的授权?我需要做什么来展示这个?