Commit b0a5a99e authored by Rubén Dávila's avatar Rubén Dávila

Little update to copy and custom content for empty results. #2406

parent b6170d2d
......@@ -2,7 +2,7 @@
.pull-left
- public_count = @public_forks.size
- protected_count = @protected_forks.size
- full_count_title = ["#{public_count} public", "#{protected_count} protected"].join(' and ')
- full_count_title = "#{public_count} public and #{protected_count} private"
== #{pluralize(@all_forks.size, 'fork')}: #{full_count_title}
.pull-right
......@@ -21,11 +21,16 @@
.projects-list-holder
= render 'shared/projects/list', projects: @public_forks, use_creator_avatar: true,
forks: true, show_last_commit_as_description: true
- if @public_forks.blank?
%ul.content-list
%li
.nothing-here-block No forks to show
- else
= render 'shared/projects/list', projects: @public_forks, use_creator_avatar: true,
forks: true, show_last_commit_as_description: true
- if protected_count > 0
%ul.projects-list
%li.project-row
%strong= pluralize(protected_count, 'protected fork')
%span you have no access to.
- if protected_count > 0
%ul.projects-list
%li.project-row
%strong= pluralize(protected_count, 'private fork')
%span you have no access to.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment