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.

show.html.erb 425B

12345678910111213141516
  1. <%= title [l(:label_group_plural), groups_path], @group.name %>
  2. <% if @group.custom_field_values.any? %>
  3. <ul>
  4. <% render_custom_field_values(@group) do |custom_field, formatted| %>
  5. <li><span class="label"><%= custom_field.name %>:</span> <%= formatted %></li>
  6. <% end %>
  7. </ul>
  8. <% end %>
  9. <h3><%= l(:label_member_plural) %></h3>
  10. <ul>
  11. <% @group.users.each do |user| %>
  12. <li><%= user %></li>
  13. <% end %>
  14. </ul>