1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-12 12:13:08 +00:00
redmine/groups/app/views/groups/_form.html.erb
Jean-Philippe Lang ced3cab7bb User groups feature initial commit.
git-svn-id: http://redmine.rubyforge.org/svn/branches/work@1373 e93f8b46-1217-0410-a6f0-8f06a7374b81
2008-04-28 15:10:04 +00:00

11 lines
370 B
Plaintext

<div class="box tabular">
<p><%= f.text_field :name %></p>
<% for @custom_value in @custom_values %>
<p><%= custom_field_tag_with_label @custom_value %></p>
<% end %>
<% unless @group.users.empty? %>
<p><label><%= l(:label_user_plural) %> (<%= @group.users.size %>)</label><%= @group.users.collect {|u| link_to_user u }.join(', ') %></p>
<% end %>
</div>