HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Redmine-4.x/redmine-4.2.9/app/views/groups/show.html.erb
<%= 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>