OSDN Git Service

Merge pull request #3315 from yujinakayama/fix-project-summary-box-overflow
[wvm/gitlab.git] / app / views / groups / show.html.haml
1 .dashboard
2   .activities.span8
3     = render "events/event_last_push", event: @last_push
4     = link_to dashboard_path, class: 'btn btn-tiny' do
5       ← To dashboard
6      
7     %span.cgray You will only see events from projects in this group
8     %hr
9     - if @events.any?
10       .content_list
11     - else
12       %p.nothing_here_message Project activity will be displayed here
13     .loading.hide
14   .side.span4
15     - if @group.description.present?
16       .description.well.well-small.light
17         = @group.description
18     = render "projects", projects: @projects
19     .prepend-top-20
20       = link_to group_path(@group, { format: :atom, private_token: current_user.private_token }), title: "Feed" do
21         %strong
22           %i.icon-rss
23           News Feed
24
25     %hr
26     .gitlab-promo
27       = link_to "Homepage", "http://gitlabhq.com"
28       = link_to "Blog", "http://blog.gitlabhq.com"
29       = link_to "@gitlabhq", "https://twitter.com/gitlabhq"
30
31 :javascript
32   $(function(){ Pager.init(20, true); });