mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-16 08:06:08 +10:00
19 lines
554 B
Plaintext
19 lines
554 B
Plaintext
- if projects.present?
|
|
.ui-box
|
|
%h5.title
|
|
Projects shared with
|
|
%strong #{@group.name}
|
|
(#{projects.count})
|
|
%ul.well-list
|
|
- projects.each do |project|
|
|
%li.project-row
|
|
= link_to project_path(project), class: dom_class(project) do
|
|
%span.namespace-name
|
|
- if project.namespace
|
|
= project.namespace.human_name
|
|
\/
|
|
%span.project-name
|
|
= truncate(project.name, length: 25)
|
|
%span.arrow
|
|
%i.icon-angle-right
|