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

22 lines
740 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?
2014-05-22 08:35:01 +00:00
.nothing-here-block This group 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
.dash-project-access-icon
= visibility_level_icon(project.visibility_level)
%span.str-truncated
%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