gitlabhq/app/views/teams/show.html.haml

32 lines
925 B
Plaintext
Raw Normal View History

2013-01-19 18:32:09 +01:00
.projects
.activities.span8
2013-01-29 21:29:21 +01:00
= link_to dashboard_path, class: 'btn btn-tiny' do
2013-01-19 18:32:09 +01:00
← 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
- if @team.description.present?
.description.well.light
= @team.description
2013-01-19 18:32:09 +01:00
= render "projects", projects: @projects
2013-03-10 11:16:57 +01:00
.prepend-top-20
= link_to team_path(@team, { format: :atom, private_token: current_user.private_token }), title: "Feed" do
%strong
%i.icon-rss
News Feed
2013-01-19 18:32:09 +01:00
%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); });