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

22 lines
726 B
Text
Raw Normal View History

.ui-box
2013-01-04 17:35:38 -05:00
%h5.title
2013-07-09 13:52:06 -04:00
Projects (#{projects.count})
- if can? current_user, :manage_group, @group
2013-01-30 09:40:43 -05:00
%span.pull-right
2013-07-09 13:52:06 -04:00
= link_to new_project_path(namespace_id: @group.id), class: "btn" 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|
2013-07-09 13:52:06 -04:00
%li.project-row
2012-10-02 13:42:15 -04:00
= link_to project_path(project), class: dom_class(project) do
2013-07-09 13:52:06 -04:00
%span.project-name
= truncate(project.name, length: 25)
2012-10-02 13:42:15 -04:00
%span.arrow
2013-07-09 13:52:06 -04:00
%i.icon-angle-right
%span.last-activity
%span Last activity:
%span.date= project_last_activity(project)