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

23 lines
716 B
Plaintext
Raw Normal View History

.ui-box
2013-01-04 23:35:38 +01:00
%h5.title
2012-10-02 19:42:15 +02:00
Projects
%small
(#{projects.count})
- if can? current_user, :manage_group, @group
2013-01-30 15:40:43 +01:00
%span.pull-right
2013-01-29 21:29:21 +01: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 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
2012-10-02 19:42:15 +02:00
= link_to project_path(project), class: dom_class(project) do
%strong.well-title= truncate(project.name, length: 25)
2012-10-02 19:42:15 +02:00
%span.arrow
→
%span.last_activity
%strong Last activity:
%span= project_last_activity(project)