summaryrefslogtreecommitdiff
path: root/app/views/groups/show.html.haml
blob: 5e39d3ab6015c64e4e9b955aac296f297df38bef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
- @no_container = true
- @blank_container = true

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

= 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")

.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)


  %ul.nav-links
    %li.active
      = link_to "#activity", 'data-toggle' => 'tab' do
        Activity
    - if @projects.present?
      %li
        = link_to "#projects", 'data-toggle' => 'tab' do
          Projects

- 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

            = render 'shared/event_filter'

        .content_list
        = spinner

      .tab-pane#projects
        = render "projects", projects: @projects

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