mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-24 17:31:14 +00:00
Contributed by Gregor Schmidt. git-svn-id: http://svn.redmine.org/redmine/trunk@17441 e93f8b46-1217-0410-a6f0-8f06a7374b81
17 lines
425 B
Plaintext
17 lines
425 B
Plaintext
<%= title [l(:label_group_plural), groups_path], @group.name %>
|
|
|
|
<% if @group.custom_field_values.any? %>
|
|
<ul>
|
|
<% render_custom_field_values(@group) do |custom_field, formatted| %>
|
|
<li><span class="label"><%= custom_field.name %>:</span> <%= formatted %></li>
|
|
<% end %>
|
|
</ul>
|
|
<% end %>
|
|
|
|
<h3><%= l(:label_member_plural) %></h3>
|
|
<ul>
|
|
<% @group.users.each do |user| %>
|
|
<li><%= user %></li>
|
|
<% end %>
|
|
</ul>
|