2015-11-26 14:37:03 +05:30
|
|
|
- unless @project.empty_repo?
|
|
|
|
- if current_user && can?(current_user, :fork_project, @project)
|
2021-04-17 20:07:23 +05:30
|
|
|
.count-badge.btn-group
|
2018-11-20 20:47:30 +05:30
|
|
|
- if current_user.already_forked?(@project) && current_user.manageable_namespaces.size < 2
|
2021-04-17 20:07:23 +05:30
|
|
|
= link_to namespace_project_path(current_user, current_user.fork_of(@project)), title: s_('ProjectOverview|Go to your fork'), class: 'gl-button btn btn-default btn-sm has-tooltip fork-btn' do
|
2021-01-03 14:25:43 +05:30
|
|
|
= sprite_icon('fork', css_class: 'icon')
|
2018-11-20 20:47:30 +05:30
|
|
|
%span= s_('ProjectOverview|Fork')
|
|
|
|
- else
|
|
|
|
- can_create_fork = current_user.can?(:create_fork)
|
2021-03-11 19:13:27 +05:30
|
|
|
- disabled_fork_tooltip = s_('ProjectOverview|You have reached your project limit')
|
2021-04-17 20:07:23 +05:30
|
|
|
%span.btn-group.has-tooltip{ title: (disabled_fork_tooltip unless can_create_fork) }
|
|
|
|
= link_to new_project_fork_path(@project), class: "gl-button btn btn-default btn-sm fork-btn #{' disabled' unless can_create_fork }", 'aria-label' => (disabled_fork_tooltip unless can_create_fork) do
|
2021-03-11 19:13:27 +05:30
|
|
|
= sprite_icon('fork', css_class: 'icon')
|
|
|
|
%span= s_('ProjectOverview|Fork')
|
2021-04-17 20:07:23 +05:30
|
|
|
= link_to project_forks_path(@project), title: n_(s_('ProjectOverview|Forks'), s_('ProjectOverview|Forks'), @project.forks_count), class: 'gl-button btn btn-default btn-sm count has-tooltip' do
|
|
|
|
= @project.forks_count
|