Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show.html.haml « groups « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c4a7800c463d970c0879e5885b6cde78acaf68e3 (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
= 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")

.dashboard
  .header-with-avatar.clearfix
    = image_tag group_icon(@group), class: "avatar group-avatar s90"
    %h3
      = @group.name
    .username
      @#{@group.path}
    - if @group.description.present?
      .description
        = escaped_autolink(@group.description)
  %hr
  .row
    %section.activities.col-md-8
      - if current_user
        = render "events/event_last_push", event: @last_push

        - if current_user
          %ul.nav.nav-pills.event_filter.pull-right
            %li
              = link_to group_path(@group, { format: :atom, private_token: current_user.private_token }), title: "Feed", class: 'rss-btn' do
                %i.fa.fa-rss
                News Feed

        = render 'shared/event_filter'
        %hr

      .content_list
      = spinner
    %aside.side.col-md-4
      = render "projects", projects: @projects
    = link_to '#aside', class: 'show-aside' do
      %i.fa.fa-angle-left