gitlab-org--gitlab-foss/app/views/groups/_projects.html.haml

23 lines
716 B
Text
Raw Normal View History

.ui-box
2013-01-04 17:35:38 -05:00
%h5.title
2012-10-02 13:42:15 -04:00
Projects
%small
(#{projects.count})
- if can? current_user, :manage_group, @group
2013-01-30 09:40:43 -05:00
%span.pull-right
2013-01-29 15:29:21 -05:00
= link_to new_project_path(namespace_id: @group.id), class: "btn btn-tiny info" do
%i.icon-plus
New Project
%ul.well-list
2012-11-29 11:09:27 -05:00
- if projects.blank?
%p.nothing_here_message This groups has no projects yet
2012-10-02 13:42:15 -04:00
- projects.each do |project|
%li
2012-10-02 13:42:15 -04:00
= link_to project_path(project), class: dom_class(project) do
%strong.well-title= truncate(project.name, length: 25)
2012-10-02 13:42:15 -04:00
%span.arrow
→
%span.last_activity
%strong Last activity:
%span= project_last_activity(project)