2016-01-19 16:12:03 +05:30
|
|
|
- @no_container = true
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
- unless can?(current_user, :read_group, @group)
|
|
|
|
- @disable_search_panel = true
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
= 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-01-14 18:37:52 +05:30
|
|
|
.cover-block
|
|
|
|
.cover-controls
|
|
|
|
- if @group && can?(current_user, :admin_group, @group)
|
|
|
|
= link_to icon('pencil'), edit_group_path(@group), class: 'btn'
|
|
|
|
- if current_user
|
|
|
|
= link_to icon('rss'), group_path(@group, { format: :atom, private_token: current_user.private_token }), title: "Feed", class: 'btn rss-btn'
|
|
|
|
|
|
|
|
.avatar-holder
|
|
|
|
= link_to group_icon(@group), target: '_blank' do
|
|
|
|
= image_tag group_icon(@group), class: "avatar group-avatar s90"
|
|
|
|
.cover-title
|
|
|
|
= @group.name
|
|
|
|
|
|
|
|
.cover-desc.username
|
|
|
|
@#{@group.path}
|
|
|
|
|
|
|
|
- if @group.description.present?
|
|
|
|
.cover-desc.description
|
|
|
|
= markdown(@group.description, pipeline: :description)
|
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
|
|
|
|
%ul.nav-links
|
2016-01-14 18:37:52 +05:30
|
|
|
%li.active
|
|
|
|
= link_to "#activity", 'data-toggle' => 'tab' do
|
|
|
|
Activity
|
|
|
|
- if @projects.present?
|
|
|
|
%li
|
|
|
|
= link_to "#projects", 'data-toggle' => 'tab' do
|
|
|
|
Projects
|
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
- if can?(current_user, :read_group, @group)
|
|
|
|
%div{ class: container_class }
|
|
|
|
.tab-content
|
|
|
|
.tab-pane.active#activity
|
|
|
|
.activity-filter-block
|
|
|
|
- if current_user
|
|
|
|
= render "events/event_last_push", event: @last_push
|
2016-01-14 18:37:52 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
= render 'shared/event_filter'
|
2016-01-14 18:37:52 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
.content_list
|
|
|
|
= spinner
|
2016-01-14 18:37:52 +05:30
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
.tab-pane#projects
|
|
|
|
= render "projects", projects: @projects
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
|
|
- else
|
2016-01-19 16:12:03 +05:30
|
|
|
%p.nav-links.no-top
|
2016-01-14 18:37:52 +05:30
|
|
|
No projects to show
|