Browse Source

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
tags/4.2.0
Go MAEDA 4 years ago
parent
commit
29433771b4
1 changed files with 9 additions and 6 deletions
  1. 9
    6
      app/views/roles/permissions.html.erb

+ 9
- 6
app/views/roles/permissions.html.erb 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' %>

Loading…
Cancel
Save