gitlabhq/app/views/groups/_projects.html.haml

23 lines
718 B
Plaintext
Raw Normal View History

2012-10-02 19:42:15 +02:00
.projects_box
%h5
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
2012-10-02 19:42:15 +02:00
%ul.unstyled
2012-11-29 17:09:27 +01:00
- if projects.blank?
%p.nothing_here_message This groups has no projects yet
2012-10-02 19:42:15 +02:00
- projects.each do |project|
%li.wll
= link_to project_path(project), class: dom_class(project) do
%strong.project_name= truncate(project.name, length: 25)
%span.arrow
→
%span.last_activity
%strong Last activity:
%span= project_last_activity(project)