OSDN Git Service

Merge branch 'team-and-group-descriptions' of https://github.com/Undev/gitlabhq into...
[wvm/gitlab.git] / app / views / groups / show.html.haml
1 - if @group.description.present?
2   .description
3     = @group.description
4   %hr
5
6 .projects
7   .activities.span8
8     = render "events/event_last_push", event: @last_push
9     = link_to dashboard_path, class: 'btn btn-tiny' do
10       ← To dashboard
11      
12     %span.cgray You will only see events from projects in this group
13     %hr
14     - if @events.any?
15       .content_list
16     - else
17       %p.nothing_here_message Project activity will be displayed here
18     .loading.hide
19   .side.span4
20     = render "projects", projects: @projects
21     %div
22       %span.rss-icon
23         = link_to dashboard_path(:atom, { private_token: current_user.private_token }) do
24           = image_tag "rss_ui.png", title: "feed"
25           %strong News Feed
26
27     %hr
28     .gitlab-promo
29       = link_to "Homepage", "http://gitlabhq.com"
30       = link_to "Blog", "http://blog.gitlabhq.com"
31       = link_to "@gitlabhq", "https://twitter.com/gitlabhq"
32
33 :javascript
34   $(function(){ Pager.init(20, true); });