# File lib/rhc/output_helpers.rb, line 4
    def display_team(team, ids=false)
      paragraph do
        header ["Team #{team.name}", ("(owned by #{team.owner.name})" if team.owner.present?)] do
          section(:bottom => 1) do
            say format_table \
              nil,
              get_properties(
                team,
                (:id if ids),
                (:global if team.global?),
                :compact_members
              ),
              :delete => true
          end
        end
      end
    end