2016-01-13 10:26:40 -05:00
|
|
|
- @no_container = true
|
|
|
|
|
2015-04-21 10:31:40 -04:00
|
|
|
= content_for :meta_tags do
|
|
|
|
- if current_user
|
|
|
|
= auto_discovery_link_tag(:atom, group_url(@group, format: :atom, private_token: current_user.private_token), title: "#{@group.name} activity")
|
|
|
|
|
2016-11-08 15:48:28 -05:00
|
|
|
.group-home-panel.text-center
|
2016-06-30 09:01:26 -04:00
|
|
|
%div{ class: container_class }
|
2016-11-03 10:26:22 -04:00
|
|
|
.avatar-container.s70.group-avatar
|
2016-10-31 15:14:05 -04:00
|
|
|
= image_tag group_icon(@group), class: "avatar s70 avatar-tile"
|
2016-11-08 15:48:28 -05:00
|
|
|
%h1.group-title
|
|
|
|
@#{@group.path}
|
|
|
|
%span.visibility-icon.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@group) }
|
|
|
|
= visibility_level_icon(@group.visibility_level, fw: false)
|
2015-12-22 10:37:29 -05:00
|
|
|
|
2016-11-08 15:48:28 -05:00
|
|
|
- if @group.description.present?
|
|
|
|
.group-home-desc
|
|
|
|
= markdown_field(@group, :description)
|
2016-06-22 09:50:19 -04:00
|
|
|
|
2016-11-08 15:48:28 -05:00
|
|
|
- if current_user
|
|
|
|
.group-buttons
|
|
|
|
= render 'shared/members/access_request_buttons', source: @group
|
|
|
|
= render 'shared/notifications/button', notification_setting: @notification_setting
|
2015-12-22 10:37:29 -05:00
|
|
|
|
2016-09-09 12:43:37 -04:00
|
|
|
%div.groups-header{ class: container_class }
|
2016-03-20 16:03:53 -04:00
|
|
|
.top-area
|
|
|
|
%ul.nav-links
|
|
|
|
%li.active
|
|
|
|
= link_to "#projects", 'data-toggle' => 'tab' do
|
|
|
|
All Projects
|
2016-03-14 13:31:14 -04:00
|
|
|
- if @shared_projects.present?
|
2016-03-20 16:03:53 -04:00
|
|
|
%li
|
|
|
|
= link_to "#shared", 'data-toggle' => 'tab' do
|
|
|
|
Shared Projects
|
|
|
|
.nav-controls
|
2016-06-17 13:17:06 -04:00
|
|
|
= form_tag request.path, method: :get, class: 'project-filter-form', id: 'project-filter-form' do |f|
|
2016-03-20 16:03:53 -04:00
|
|
|
= search_field_tag :filter_projects, nil, placeholder: 'Filter by name', class: 'projects-list-filter form-control', spellcheck: false
|
|
|
|
= render 'shared/projects/dropdown'
|
|
|
|
- if can? current_user, :create_projects, @group
|
|
|
|
= link_to new_project_path(namespace_id: @group.id), class: 'btn btn-new pull-right' do
|
|
|
|
New Project
|
|
|
|
|
|
|
|
.tab-content
|
|
|
|
.tab-pane.active#projects
|
|
|
|
= render "projects", projects: @projects
|
|
|
|
|
|
|
|
- if @shared_projects.present?
|
|
|
|
.tab-pane#shared
|
|
|
|
= render "shared_projects", projects: @shared_projects
|