kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.3 KiB
55 lines
2.3 KiB
11 years ago
|
<%#-- copyright
|
||
11 years ago
|
OpenProject Global Roles Plugin
|
||
11 years ago
|
|
||
11 years ago
|
Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF)
|
||
11 years ago
|
|
||
|
This program is free software; you can redistribute it and/or
|
||
11 years ago
|
modify it under the terms of the GNU General Public License
|
||
|
version 3.
|
||
11 years ago
|
|
||
11 years ago
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program; if not, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
11 years ago
|
|
||
|
++#%>
|
||
|
|
||
14 years ago
|
<% perms_by_module = permissions.group_by {|p| p.project_module.to_s} %>
|
||
|
<% perms_by_module.keys.sort.each do |mod| %>
|
||
9 years ago
|
<% if globalRole === 'false' %>
|
||
9 years ago
|
<% module_name = mod.blank? ? 'fieldset--' + Project.model_name.human.downcase.gsub(' ', '_') : 'fieldset--' + l_or_humanize(mod, prefix: 'project_module_').downcase.gsub(' ', '_') %>
|
||
|
<fieldset class="form--fieldset -collapsible" id="<%= module_name %>">
|
||
9 years ago
|
<% else %>
|
||
9 years ago
|
<% module_name = mod.blank? ? 'fieldset--global--' + Project.model_name.human.downcase.gsub(' ', '_') : 'fieldset--global--' + l_or_humanize(mod, prefix: 'project_module_').downcase.gsub(' ', '_') %>
|
||
|
<fieldset class="form--fieldset -collapsible" id="<%= module_name %>">
|
||
9 years ago
|
<% end %>
|
||
|
|
||
7 years ago
|
<legend class="form--fieldset-legend">
|
||
9 years ago
|
<%= mod.blank? ? Project.model_name.human : l_or_humanize(mod, prefix: 'project_module_') %>
|
||
9 years ago
|
</legend>
|
||
9 years ago
|
<div class="form--fieldset-control">
|
||
|
<span class="form--fieldset-control-container">
|
||
|
(<%= check_all_links module_name %>)
|
||
|
</span>
|
||
|
</div>
|
||
8 years ago
|
<div class="-columns-2">
|
||
|
<% perms_by_module[mod].each do |permission| %>
|
||
8 years ago
|
<div class="form--field">
|
||
8 years ago
|
<div class="form--field-container">
|
||
8 years ago
|
<label class="form--label-with-check-box">
|
||
|
<%= styled_check_box_tag 'role[permissions][]', permission.name, (role.permissions && role.permissions.include?(permission.name)) %>
|
||
|
<%= l_or_humanize(permission.name, prefix: 'permission_') %>
|
||
|
</label>
|
||
8 years ago
|
</div>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
</div>
|
||
9 years ago
|
|
||
10 years ago
|
</fieldset>
|
||
14 years ago
|
<% end %>
|
||
|
<%= hidden_field_tag 'role[permissions][]', '' %>
|