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

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

7 8 9 10
= 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 已提交
11
.cover-block
S
Stan Hu 已提交
12 13 14
  .cover-controls
    - if @group && can?(current_user, :admin_group, @group)
      = link_to icon('pencil'), edit_group_path(@group), class: 'btn'
S
Stan Hu 已提交
15 16
    - 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 已提交
17

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

31

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

41 42 43 44 45 46 47
- 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 已提交
48

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

51 52
        .content_list
        = spinner
D
Dmitriy Zaporozhets 已提交
53

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

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