2018-05-31 08:00:36 -04:00
|
|
|
- group = local_assigns.fetch(:group)
|
2016-07-14 18:13:38 -04:00
|
|
|
- css_class = 'no-description' if group.description.blank?
|
2016-04-04 13:23:50 -04:00
|
|
|
|
2016-07-14 18:13:38 -04:00
|
|
|
%li.group-row{ class: css_class }
|
|
|
|
.controls
|
2018-06-16 00:45:36 -04:00
|
|
|
= link_to _('Edit'), admin_group_edit_path(group), id: "edit_#{dom_id(group)}", class: 'btn'
|
|
|
|
= link_to _('Delete'), [:admin, group], data: { confirm: _("Are you sure you want to remove %{group_name}?") % { group_name: group.name } }, method: :delete, class: 'btn btn-remove'
|
2016-07-14 18:13:38 -04:00
|
|
|
.stats
|
2018-04-09 12:33:41 -04:00
|
|
|
%span.badge.badge-pill
|
2016-11-22 11:58:10 -05:00
|
|
|
= storage_counter(group.storage_size)
|
|
|
|
|
2018-05-31 08:00:36 -04:00
|
|
|
= render_if_exists 'admin/namespace_plan_badge', namespace: group
|
|
|
|
|
2016-07-14 18:13:38 -04:00
|
|
|
%span
|
|
|
|
= icon('bookmark')
|
|
|
|
= number_with_delimiter(group.projects.count)
|
|
|
|
|
|
|
|
%span
|
|
|
|
= icon('users')
|
|
|
|
= number_with_delimiter(group.users.count)
|
|
|
|
|
2016-12-26 05:47:16 -05:00
|
|
|
%span.visibility-icon.has-tooltip{ data: { container: 'body', placement: 'left' }, title: visibility_icon_description(group) }
|
2016-07-14 19:02:50 -04:00
|
|
|
= visibility_level_icon(group.visibility_level, fw: false)
|
|
|
|
|
2016-11-03 10:26:22 -04:00
|
|
|
.avatar-container.s40
|
2018-04-09 17:50:40 -04:00
|
|
|
= group_icon(group, class: "avatar s40 d-none d-sm-block")
|
2016-07-14 18:13:38 -04:00
|
|
|
.title
|
|
|
|
= link_to [:admin, group], class: 'group-name' do
|
2016-12-08 14:11:20 -05:00
|
|
|
= group.full_name
|
2016-07-14 18:13:38 -04:00
|
|
|
|
|
|
|
- if group.description.present?
|
|
|
|
.description
|
2016-10-06 18:01:42 -04:00
|
|
|
= markdown_field(group, :description)
|