2018-06-16 00:45:36 -04:00
|
|
|
- add_to_breadcrumbs _("Groups"), admin_groups_path
|
2017-08-17 10:53:50 -04:00
|
|
|
- breadcrumb_title @group.name
|
2018-06-16 00:45:36 -04:00
|
|
|
- page_title @group.name, _("Groups")
|
2013-07-13 01:45:48 -04:00
|
|
|
%h3.page-title
|
2018-06-16 00:45:36 -04:00
|
|
|
= _('Group: %{group_name}') % { group_name: @group.full_name }
|
2012-10-02 12:01:40 -04:00
|
|
|
|
2018-04-09 13:42:45 -04:00
|
|
|
= link_to admin_group_edit_path(@group), class: "btn float-right" do
|
2014-10-01 18:21:29 -04:00
|
|
|
%i.fa.fa-pencil-square-o
|
2018-06-16 00:45:36 -04:00
|
|
|
= _('Edit')
|
2013-06-10 08:58:51 -04:00
|
|
|
%hr
|
|
|
|
.row
|
2013-12-30 16:55:15 -05:00
|
|
|
.col-md-6
|
2018-04-10 13:11:34 -04:00
|
|
|
.card
|
|
|
|
.card-header
|
2018-06-16 00:45:36 -04:00
|
|
|
= _('Group info:')
|
2018-05-29 11:08:35 -04:00
|
|
|
%ul.content-list
|
2014-06-03 09:40:50 -04:00
|
|
|
%li
|
2016-11-03 10:26:22 -04:00
|
|
|
.avatar-container.s60
|
2017-10-02 07:35:01 -04:00
|
|
|
= group_icon(@group, class: "avatar s60")
|
2013-06-10 08:58:51 -04:00
|
|
|
%li
|
2018-06-16 00:45:36 -04:00
|
|
|
%span.light= _('Name:')
|
2013-06-10 08:58:51 -04:00
|
|
|
%strong= @group.name
|
|
|
|
%li
|
2018-06-16 00:45:36 -04:00
|
|
|
%span.light= _('Path:')
|
2013-06-10 08:58:51 -04:00
|
|
|
%strong
|
|
|
|
= @group.path
|
2012-12-03 13:14:05 -05:00
|
|
|
|
2013-06-10 08:58:51 -04:00
|
|
|
%li
|
2018-06-16 00:45:36 -04:00
|
|
|
%span.light= _('Description:')
|
2013-06-10 08:58:51 -04:00
|
|
|
%strong
|
|
|
|
= @group.description
|
2012-12-25 17:52:20 -05:00
|
|
|
|
2016-03-21 18:11:24 -04:00
|
|
|
%li
|
2018-06-16 00:45:36 -04:00
|
|
|
%span.light= _('Visibility level:')
|
2016-03-21 18:11:24 -04:00
|
|
|
%strong
|
|
|
|
= visibility_level_label(@group.visibility_level)
|
|
|
|
|
2013-06-10 08:58:51 -04:00
|
|
|
%li
|
2018-06-16 00:45:36 -04:00
|
|
|
%span.light= _('Created on:')
|
2013-06-10 08:58:51 -04:00
|
|
|
%strong
|
2016-01-06 17:27:56 -05:00
|
|
|
= @group.created_at.to_s(:medium)
|
2012-12-25 17:52:20 -05:00
|
|
|
|
2018-05-31 08:00:36 -04:00
|
|
|
= render_if_exists 'admin/namespace_plan_info', namespace: @group
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
%li
|
2018-06-16 00:45:36 -04:00
|
|
|
%span.light= _('Storage:')
|
|
|
|
- counter_storage = storage_counter(@group.storage_size)
|
|
|
|
- counter_repositories = storage_counter(@group.repository_size)
|
|
|
|
- counter_build_artifacts = storage_counter(@group.build_artifacts_size)
|
|
|
|
- counter_lfs_objects = storage_counter(@group.lfs_objects_size)
|
|
|
|
%strong
|
|
|
|
= _("%{counter_storage} (%{counter_repositories} repositories, %{counter_build_artifacts} build artifacts, %{counter_lfs_objects} LFS)") % { counter_storage: counter_storage, counter_repositories: counter_repositories, counter_build_artifacts: counter_build_artifacts, counter_lfs_objects: counter_lfs_objects }
|
2016-11-22 11:58:10 -05:00
|
|
|
|
2016-09-01 19:49:48 -04:00
|
|
|
%li
|
2018-06-16 00:45:36 -04:00
|
|
|
%span.light= _('Group Git LFS status:')
|
2016-09-01 19:49:48 -04:00
|
|
|
%strong
|
2016-09-05 14:14:49 -04:00
|
|
|
= group_lfs_status(@group)
|
2016-09-01 19:49:48 -04:00
|
|
|
= link_to icon('question-circle'), help_page_path('workflow/lfs/manage_large_binaries_with_git_lfs')
|
|
|
|
|
2018-05-31 08:00:36 -04:00
|
|
|
= render_if_exists 'namespaces/shared_runner_status', namespace: @group
|
|
|
|
|
|
|
|
= render_if_exists 'ldap_group_links/ldap_group_links_show', group: @group
|
|
|
|
|
2018-04-10 13:11:34 -04:00
|
|
|
.card
|
|
|
|
.card-header
|
2018-06-01 20:40:09 -04:00
|
|
|
= _('Projects')
|
|
|
|
%span.badge.badge-pill
|
|
|
|
#{@group.projects.count}
|
2018-05-29 11:08:35 -04:00
|
|
|
%ul.content-list
|
2014-06-02 11:58:00 -04:00
|
|
|
- @projects.each do |project|
|
2013-06-18 10:32:33 -04:00
|
|
|
%li
|
|
|
|
%strong
|
2018-03-05 08:45:35 -05:00
|
|
|
= link_to project.full_name, [:admin, project.namespace.becomes(Namespace), project]
|
2018-04-09 12:33:41 -04:00
|
|
|
%span.badge.badge-pill
|
2016-11-22 11:58:10 -05:00
|
|
|
= storage_counter(project.statistics.storage_size)
|
2018-04-09 13:42:45 -04:00
|
|
|
%span.float-right.light
|
2017-07-21 20:37:22 -04:00
|
|
|
%span.monospace= project.full_path + '.git'
|
2018-04-10 13:11:34 -04:00
|
|
|
.card-footer
|
2014-06-02 11:58:00 -04:00
|
|
|
= paginate @projects, param_name: 'projects_page', theme: 'gitlab'
|
2012-12-25 17:52:20 -05:00
|
|
|
|
2016-03-11 12:55:17 -05:00
|
|
|
- if @group.shared_projects.any?
|
2018-04-10 13:11:34 -04:00
|
|
|
.card
|
|
|
|
.card-header
|
2018-06-16 00:45:36 -04:00
|
|
|
= _('Projects shared with %{group_name}') % { group_name: @group.name }
|
2018-04-09 12:33:41 -04:00
|
|
|
%span.badge.badge-pill
|
2016-03-11 12:55:17 -05:00
|
|
|
#{@group.shared_projects.count}
|
2018-05-29 11:08:35 -04:00
|
|
|
%ul.content-list
|
2016-03-11 12:55:17 -05:00
|
|
|
- @group.shared_projects.sort_by(&:name).each do |project|
|
|
|
|
%li
|
|
|
|
%strong
|
2018-03-05 08:45:35 -05:00
|
|
|
= link_to project.full_name, [:admin, project.namespace.becomes(Namespace), project]
|
2018-04-09 12:33:41 -04:00
|
|
|
%span.badge.badge-pill
|
2016-11-22 11:58:10 -05:00
|
|
|
= storage_counter(project.statistics.storage_size)
|
2018-04-09 13:42:45 -04:00
|
|
|
%span.float-right.light
|
2017-07-21 20:37:22 -04:00
|
|
|
%span.monospace= project.full_path + '.git'
|
2016-03-11 12:55:17 -05:00
|
|
|
|
2013-12-30 16:55:15 -05:00
|
|
|
.col-md-6
|
2015-07-28 10:36:48 -04:00
|
|
|
- if can?(current_user, :admin_group_member, @group)
|
2018-04-10 13:11:34 -04:00
|
|
|
.card
|
|
|
|
.card-header
|
2018-06-16 00:45:36 -04:00
|
|
|
= _('Add user(s) to the group:')
|
2018-04-10 13:11:34 -04:00
|
|
|
.card-body.form-holder
|
2015-07-28 10:36:48 -04:00
|
|
|
%p.light
|
2018-06-16 00:45:36 -04:00
|
|
|
- link_to_help = link_to(_("here"), help_page_path("user/permissions"), class: "vlink")
|
|
|
|
= _('Read more about project permissions <strong>%{link_to_help}</strong>').html_safe % { link_to_help: link_to_help }
|
2012-10-02 12:01:40 -04:00
|
|
|
|
2016-12-08 13:59:41 -05:00
|
|
|
= form_tag admin_group_members_update_path(@group), id: "new_project_member", class: "bulk_import", method: :put do
|
2015-07-28 10:36:48 -04:00
|
|
|
%div
|
2018-05-31 08:00:36 -04:00
|
|
|
= users_select_tag(:user_ids, multiple: true, email_user: true, skip_ldap: @group.ldap_synced?, scope: :all)
|
2016-12-23 04:37:12 -05:00
|
|
|
.prepend-top-10
|
2015-07-28 10:36:48 -04:00
|
|
|
= select_tag :access_level, options_for_select(GroupMember.access_level_roles), class: "project-access-select select2"
|
|
|
|
%hr
|
2018-09-18 05:58:22 -04:00
|
|
|
= button_tag _('Add users to group'), class: "btn btn-success"
|
2017-07-05 15:17:02 -04:00
|
|
|
= render 'shared/members/requests', membership_source: @group, requesters: @requesters, force_mobile_view: true
|
2016-06-20 09:50:46 -04:00
|
|
|
|
2018-04-10 13:11:34 -04:00
|
|
|
.card
|
|
|
|
.card-header
|
2018-06-16 00:45:36 -04:00
|
|
|
= _("<strong>%{group_name}</strong> group members").html_safe % { group_name: @group.name }
|
2018-04-09 12:33:41 -04:00
|
|
|
%span.badge.badge-pill= @group.members.size
|
2018-04-09 13:42:45 -04:00
|
|
|
.float-right
|
2018-10-16 06:14:26 -04:00
|
|
|
= link_to icon('pencil-square-o', text: _('Manage access')), group_group_members_path(@group), class: "btn btn-sm"
|
2018-05-29 11:08:35 -04:00
|
|
|
%ul.content-list.group-users-list.content-list.members-list
|
2016-06-27 10:20:57 -04:00
|
|
|
= render partial: 'shared/members/member', collection: @members, as: :member, locals: { show_controls: false }
|
2018-04-10 13:11:34 -04:00
|
|
|
.card-footer
|
2016-06-27 10:20:57 -04:00
|
|
|
= paginate @members, param_name: 'members_page', theme: 'gitlab'
|