2016-08-24 12:49:21 +05:30
|
|
|
- css_class = 'no-description' if group.description.blank?
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
%li.group-row{ class: css_class }
|
2016-08-24 12:49:21 +05:30
|
|
|
.controls
|
2017-08-17 22:00:37 +05:30
|
|
|
= link_to 'Edit', admin_group_edit_path(group), id: "edit_#{dom_id(group)}", class: 'btn'
|
2016-08-24 12:49:21 +05:30
|
|
|
= link_to 'Delete', [:admin, group], data: { confirm: "Are you sure you want to remove #{group.name}?" }, method: :delete, class: 'btn btn-remove'
|
2016-06-02 11:05:42 +05:30
|
|
|
.stats
|
2017-08-17 22:00:37 +05:30
|
|
|
%span.badge
|
|
|
|
= storage_counter(group.storage_size)
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
%span
|
|
|
|
= icon('bookmark')
|
|
|
|
= number_with_delimiter(group.projects.count)
|
|
|
|
|
|
|
|
%span
|
|
|
|
= icon('users')
|
|
|
|
= number_with_delimiter(group.users.count)
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
%span.visibility-icon.has-tooltip{ data: { container: 'body', placement: 'left' }, title: visibility_icon_description(group) }
|
2016-06-02 11:05:42 +05:30
|
|
|
= visibility_level_icon(group.visibility_level, fw: false)
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
.avatar-container.s40
|
2018-03-17 18:26:18 +05:30
|
|
|
= group_icon(group, class: "avatar s40 hidden-xs")
|
2016-06-02 11:05:42 +05:30
|
|
|
.title
|
|
|
|
= link_to [:admin, group], class: 'group-name' do
|
2017-08-17 22:00:37 +05:30
|
|
|
= group.full_name
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
- if group.description.present?
|
|
|
|
.description
|
2016-11-03 12:29:30 +05:30
|
|
|
= markdown_field(group, :description)
|