OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/app/views/members/_autocomplete_for_member.ht...

14 lines
540 B

<% if available_principals.size > 20 %>
<p><%= simple_format(l('notice_to_many_principals_to_display'))%></p>
<% elsif available_principals.size == 0 %>
<p><%= l('notice_no_principals_found')%></p>
<% else %>
<%= principals_check_box_tags 'member[user_ids][]', available_principals %>
<p><%= l(:label_role_plural) %>:
<% roles.each do |role| %>
<label><%= check_box_tag 'member[role_ids][]', role.id %> <%= role.name %></label>
<% end %></p>
<p><%= submit_tag l(:button_add), :id => 'member-add-submit' %></p>
<% end %>