summaryrefslogtreecommitdiff
path: root/app/views/groups/show.html.haml
blob: 5332d383c4c898d1f1937154433fdd2f032febc8 (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
.dashboard
  .activities.col-md-8.hidden-sm
    = render "events/event_last_push", event: @last_push
    = link_to dashboard_path, class: 'btn btn-tiny' do
      ← To dashboard
     
    %span.cgray You will only see events from projects in this group
    %hr
    = render 'shared/event_filter'
    - if @events.any?
      .content_list
    - else
      %p.nothing_here_message Project activity will be displayed here
    .loading.hide
  .side.col-md-4
    - if @group.description.present?
      .description-block
        = @group.description
    = render "projects", projects: @projects
    .prepend-top-20
      = link_to group_path(@group, { format: :atom, private_token: current_user.private_token }), title: "Feed" do
        %strong
          %i.icon-rss
          News Feed

    %hr
    = render 'shared/promo'