show.html.haml 1.7 KB
Newer Older
1 2
- @no_container = true

3 4 5
- unless can?(current_user, :read_group, @group)
  - @disable_search_panel = true

6 7 8 9
= 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")

D
Dmitriy Zaporozhets 已提交
10
.cover-block
S
Stan Hu 已提交
11 12 13
  .cover-controls
    - if @group && can?(current_user, :admin_group, @group)
      = link_to icon('pencil'), edit_group_path(@group), class: 'btn'
S
Stan Hu 已提交
14 15
    - if current_user
      = link_to icon('rss'), group_path(@group, { format: :atom, private_token: current_user.private_token }), title: "Feed", class: 'btn rss-btn'
S
Stan Hu 已提交
16

D
Dmitriy Zaporozhets 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29
  .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)

30

31
  %ul.nav-links
D
Dmitriy Zaporozhets 已提交
32 33 34 35 36 37 38 39
    %li.active
      = link_to "#activity", 'data-toggle' => 'tab' do
        Activity
    - if @projects.present?
      %li
        = link_to "#projects", 'data-toggle' => 'tab' do
          Projects

40 41 42 43 44 45 46
- 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
D
Dmitriy Zaporozhets 已提交
47

48
            = render 'shared/event_filter'
D
Dmitriy Zaporozhets 已提交
49

J
Josh Frye 已提交
50
        .content_list{data: {href: events_group_path}}
51
        = spinner
D
Dmitriy Zaporozhets 已提交
52

53 54
      .tab-pane#projects
        = render "projects", projects: @projects
D
Dmitriy Zaporozhets 已提交
55 56

- else
57
  %p.nav-links.no-top
58
    No projects to show