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

13 lines
576 B
Plaintext
Raw Normal View History

- if current_user && can?(current_user, :fork_project, @project)
- if current_user.already_forked?(@project) && current_user.manageable_namespaces.size < 2
= link_to namespace_project_path(current_user, current_user.fork_of(@project)), title: 'Go to your fork', class: 'btn' do
2015-07-31 11:56:15 +00:00
= icon('code-fork fw')
Fork
%span.count
= @project.forks_count
- else
= link_to new_namespace_project_fork_path(@project.namespace, @project), title: "Fork project", class: 'btn' do
2015-07-31 11:56:15 +00:00
= icon('code-fork fw')
%span.count
= @project.forks_count