gitlab-org--gitlab-foss/app/views/projects/buttons/_fork.html.haml

19 lines
1,001 B
Text
Raw Normal View History

2015-11-12 06:44:33 -05:00
- unless @project.empty_repo?
- if current_user && can?(current_user, :fork_project, @project)
- if current_user.already_forked?(@project) && current_user.manageable_namespaces.size < 2
2017-06-07 16:13:44 -04:00
= link_to namespace_project_path(current_user, current_user.fork_of(@project)), title: _('Go to your fork'), class: 'btn has-tooltip' do
2016-07-15 10:23:41 -04:00
= custom_icon('icon_fork')
2017-06-07 16:13:44 -04:00
%span= s_('GoToYourFork|Fork')
2017-06-13 13:58:46 -04:00
- elsif !current_user.can_create_project?
= link_to new_project_fork_path(@project), title: _('You have reached your project limit'), class: 'btn has-tooltip disabled' do
2017-06-13 13:58:46 -04:00
= custom_icon('icon_fork')
%span= s_('CreateNewFork|Fork')
2015-11-12 06:44:33 -05:00
- else
= link_to new_project_fork_path(@project), class: 'btn' do
2016-07-15 10:23:41 -04:00
= custom_icon('icon_fork')
2017-06-07 16:13:44 -04:00
%span= s_('CreateNewFork|Fork')
2016-12-23 04:37:12 -05:00
.count-with-arrow
%span.arrow
= link_to project_forks_path(@project), title: n_('Fork', 'Forks', @project.forks_count), class: 'count' do
= @project.forks_count