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

22 lines
747 B
Plaintext
Raw Normal View History

.panel.panel-default
.panel-heading
2013-07-09 17:52:06 +00:00
Projects (#{projects.count})
- if can? current_user, :create_projects, @group
.panel-head-actions
2013-08-27 10:49:29 +00:00
= link_to new_project_path(namespace_id: @group.id), class: "btn btn-new" do
2014-10-01 22:21:29 +00:00
%i.fa.fa-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
= project.name
2012-10-02 17:42:15 +00:00
%span.arrow
2014-10-01 22:21:29 +00:00
%i.fa.fa-angle-right