gitlab-org--gitlab-foss/app/views/admin/groups/show.html.haml

129 lines
4.7 KiB
Plaintext
Raw Normal View History

- add_to_breadcrumbs _("Groups"), admin_groups_path
2017-08-17 14:53:50 +00:00
- breadcrumb_title @group.name
- page_title @group.name, _("Groups")
%h3.page-title
= _('Group: %{group_name}') % { group_name: @group.full_name }
= link_to admin_group_edit_path(@group), class: "btn float-right", data: { qa_selector: 'edit_group_link' } do
2014-10-01 22:21:29 +00:00
%i.fa.fa-pencil-square-o
= _('Edit')
%hr
.row
.col-md-6
.card
.card-header
= _('Group info:')
%ul.content-list
%li
.avatar-container.rect-avatar.s60
= group_icon(@group, class: "avatar s60")
%li
%span.light= _('Name:')
%strong
= link_to @group.name, group_path(@group)
%li
%span.light= _('Path:')
%strong
= @group.path
%li
%span.light= _('Description:')
%strong
= @group.description
2012-12-25 22:52:20 +00:00
%li
%span.light= _('Visibility level:')
%strong
= visibility_level_label(@group.visibility_level)
%li
%span.light= _('Created on:')
%strong
= @group.created_at.to_s(:medium)
2012-12-25 22:52:20 +00:00
2019-07-22 12:52:30 +00:00
%li
%span.light= _('ID:')
%strong
= @group.id
= render_if_exists 'admin/namespace_plan_info', namespace: @group
%li
= render 'shared/storage_counter_statistics', storage_size: @group.storage_size, storage_details: @group
%li
%span.light= _('Group Git LFS status:')
%strong
= group_lfs_status(@group)
= link_to icon('question-circle'), help_page_path('topics/git/lfs/index')
= render_if_exists 'namespaces/shared_runner_status', namespace: @group
= render 'shared/custom_attributes', custom_attributes: @group.custom_attributes
= render_if_exists 'ldap_group_links/ldap_group_links_show', group: @group
.card
.card-header
= _('Projects')
%span.badge.badge-pill
#{@group.projects.count}
%ul.content-list
- @projects.each do |project|
%li
%strong
= link_to project.full_name, [:admin, project.namespace.becomes(Namespace), project]
2018-04-09 16:33:41 +00:00
%span.badge.badge-pill
= storage_counter(project.statistics.storage_size)
%span.float-right.light
%span.monospace= project.full_path + '.git'
.card-footer
= paginate @projects, param_name: 'projects_page', theme: 'gitlab'
2012-12-25 22:52:20 +00:00
- shared_projects = @group.shared_projects.sort_by(&:name)
- unless shared_projects.empty?
.card
.card-header
= _('Projects shared with %{group_name}') % { group_name: @group.name }
2018-04-09 16:33:41 +00:00
%span.badge.badge-pill
#{shared_projects.size}
%ul.content-list
- shared_projects.each do |project|
%li
%strong
= link_to project.full_name, [:admin, project.namespace.becomes(Namespace), project]
2018-04-09 16:33:41 +00:00
%span.badge.badge-pill
= storage_counter(project.statistics.storage_size)
%span.float-right.light
%span.monospace= project.full_path + '.git'
.col-md-6
- if can?(current_user, :admin_group_member, @group)
.card
.card-header
= _('Add user(s) to the group:')
.card-body.form-holder
%p.light
2018-12-05 12:46:05 +00:00
- link_to_help = link_to(_("here"), help_page_path("user/permissions"))
= _('Read more about project permissions <strong>%{link_to_help}</strong>').html_safe % { link_to_help: link_to_help }
= form_tag admin_group_members_update_path(@group), id: "new_project_member", class: "bulk_import", method: :put do
%div
= users_select_tag(:user_ids, multiple: true, email_user: true, skip_ldap: @group.ldap_synced?, scope: :all)
2016-12-23 09:37:12 +00:00
.prepend-top-10
= select_tag :access_level, options_for_select(GroupMember.access_level_roles), class: "project-access-select select2"
%hr
= button_tag _('Add users to group'), class: "btn btn-success"
2017-07-05 19:17:02 +00:00
= render 'shared/members/requests', membership_source: @group, requesters: @requesters, force_mobile_view: true
.card
.card-header
= _("<strong>%{group_name}</strong> group members").html_safe % { group_name: @group.name }
2018-04-09 16:33:41 +00:00
%span.badge.badge-pill= @group.members.size
.float-right
= link_to icon('pencil-square-o', text: _('Manage access')), group_group_members_path(@group), class: "btn btn-sm"
%ul.content-list.group-users-list.content-list.members-list
= render partial: 'shared/members/member', collection: @members, as: :member, locals: { show_controls: false }
.card-footer
= paginate @members, param_name: 'members_page', theme: 'gitlab'