Add teams into Public sections

This commit is contained in:
Andrey Kumanyaev 2013-01-19 21:32:09 +04:00 committed by Dmitriy Zaporozhets
parent 82499a4cbf
commit 695becc4cb
14 changed files with 706 additions and 0 deletions

View file

@ -0,0 +1,22 @@
.projects_box
%h5.title
Projects
%small
(#{projects.count})
- if can? current_user, :manage_group, @group
%span.right
= link_to new_project_path(namespace_id: @group.id), class: "btn very_small info" do
%i.icon-plus
New Project
%ul.well-list
- if projects.blank?
%p.nothing_here_message This groups has no projects yet
- projects.each do |project|
%li
= link_to project_path(project), class: dom_class(project) do
%strong.well-title= truncate(project.name, length: 25)
%span.arrow
→
%span.last_activity
%strong Last activity:
%span= project_last_activity(project)