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

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

.projects
  .activities.span8
    = link_to dashboard_path, class: 'btn very_small' do
      ← To dashboard
     
    %span.cgray Events and projects are filtered in scope of team
    %hr
    - if @events.any?
      .content_list
    - else
      %p.nothing_here_message Projects activity will be displayed here
    .loading.hide
  .side.span4
    = render "projects", projects: @projects
    %div
      %span.rss-icon
        = link_to dashboard_path(:atom, { private_token: current_user.private_token }) do
          = image_tag "rss_ui.png", title: "feed"
          %strong News Feed

    %hr
    .gitlab-promo
      = link_to "Homepage", "http://gitlabhq.com"
      = link_to "Blog", "http://blog.gitlabhq.com"
      = link_to "@gitlabhq", "https://twitter.com/gitlabhq"

:javascript
  $(function(){ Pager.init(20, true); });