1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-05 16:43:25 +00:00

Add Check all / Uncheck all button to filters in permissions report (#32672).

Patch by Mizuki ISHIKAWA.


git-svn-id: http://svn.redmine.org/redmine/trunk@19497 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2020-02-06 00:44:06 +00:00
parent 73f97d4120
commit 29433771b4

View File

@ -5,12 +5,15 @@
<legend onclick="toggleFieldset(this);" class="icon icon-collapsed"><%= l(:label_filter_plural) %></legend>
<div style="display: none;">
<%= form_tag({}, :method => :get) do %>
<% Role.sorted.to_a.each do |role| %>
<label>
<%= check_box_tag "ids[]", role.id, @roles.include?(role) %>
<%= role.name %>
</label>
<% end %>
<fieldset>
<legend><%= toggle_checkboxes_link('#filters input[type=checkbox]:enabled') %></legend>
<% Role.sorted.to_a.each do |role| %>
<label>
<%= check_box_tag "ids[]", role.id, @roles.include?(role) %>
<%= role.name %>
</label>
<% end %>
</fieldset>
<p>
<%= submit_tag l(:button_apply), :name => nil %>
<%= link_to l(:button_clear), permissions_roles_path, :class => 'icon icon-reload' %>