mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 05:06:46 +10:00
Update project path helpers and routes to reflect the new nested resources introduced in the Rails 4.1.9 upgrade.
19 lines
601 B
Plaintext
19 lines
601 B
Plaintext
- if projects.present?
|
|
.panel.panel-default
|
|
.panel-heading
|
|
Projects shared with
|
|
%strong #{@group.name}
|
|
(#{projects.count})
|
|
%ul.well-list
|
|
- projects.each do |project|
|
|
%li.project-row
|
|
= link_to namespace_project_path(project.namespace, 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
|