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

23 lines
791 B
Plaintext
Raw Normal View History

.ui-box
2013-07-13 17:36:21 +00:00
.title
2013-07-09 17:52:06 +00:00
Projects (#{projects.count})
- if can? current_user, :manage_group, @group
2013-01-30 14:40:43 +00:00
%span.pull-right
2013-08-27 10:49:29 +00:00
= link_to new_project_path(namespace_id: @group.id), class: "btn btn-new" do
%i.icon-plus
2013-08-27 10:49:29 +00:00
New project
%ul.well-list
2012-11-29 16:09:27 +00:00
- if projects.blank?
%p.nothing_here_message This groups has no projects yet
2012-10-02 17:42:15 +00:00
- projects.each do |project|
2013-07-09 17:52:06 +00:00
%li.project-row
2012-10-02 17:42:15 +00:00
= link_to project_path(project), class: dom_class(project) do
2013-12-26 06:44:59 +00:00
= visibility_level_icon(project.visibility_level)
2013-07-09 17:52:06 +00:00
%span.project-name
= truncate(project.name, length: 25)
2012-10-02 17:42:15 +00:00
%span.arrow
2013-07-09 17:52:06 +00:00
%i.icon-angle-right
%span.last-activity
%span Last activity:
%span.date= project_last_activity(project)