debian-mirror-gitlab/app/views/projects/buttons/_fork.html.haml

20 lines
847 B
Text
Raw Normal View History

2015-11-26 14:37:03 +05:30
- 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
2016-06-02 11:05:42 +05:30
= link_to namespace_project_path(current_user, current_user.fork_of(@project)), title: 'Go to your fork', class: 'btn has-tooltip' do
2015-11-26 14:37:03 +05:30
= icon('code-fork fw')
Fork
%div.count-with-arrow
%span.arrow
2015-11-26 14:37:03 +05:30
%span.count
= @project.forks_count
- else
2016-06-02 11:05:42 +05:30
= link_to new_namespace_project_fork_path(@project.namespace, @project), title: "Fork project", class: 'btn has-tooltip' do
2015-11-26 14:37:03 +05:30
= icon('code-fork fw')
Fork
%div.count-with-arrow
%span.arrow
2015-11-26 14:37:03 +05:30
%span.count
= link_to namespace_project_forks_path(@project.namespace, @project) do
= @project.forks_count