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.

123456789101112131415161718192021
  1. <div class="contextual">
  2. <%= link_to(l(:button_edit), edit_group_path(@group), :class => 'icon icon-edit') if User.current.admin? %>
  3. </div>
  4. <h2><%= @group.name %></h2>
  5. <% if @group.custom_field_values.any? %>
  6. <ul>
  7. <% render_custom_field_values(@group) do |custom_field, formatted| %>
  8. <li><span class="label"><%= custom_field.name %>:</span> <%= formatted %></li>
  9. <% end %>
  10. </ul>
  11. <% end %>
  12. <h3><%= l(:label_member_plural) %></h3>
  13. <ul>
  14. <% @group.users.visible.each do |user| %>
  15. <li><%= link_to_user(user) %></li>
  16. <% end %>
  17. </ul>
  18. <% html_title @group.name %>