mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-12 06:06:05 +10:00
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: LICENSE VERSION app/controllers/omniauth_callbacks_controller.rb app/helpers/application_helper.rb app/helpers/merge_requests_helper.rb app/models/group.rb app/models/project.rb app/models/project_team.rb app/views/admin/groups/edit.html.haml app/views/groups/_projects.html.haml app/views/groups/edit.html.haml db/schema.rb doc/install/installation.md doc/integration/README.md lib/gitlab/git_access.rb lib/gitlab/markdown.rb spec/helpers/merge_requests_helper.rb spec/models/merge_request_spec.rb
19 lines
572 B
Plaintext
19 lines
572 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 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
|