summaryrefslogtreecommitdiff
path: root/app/views/projects/buttons/_fork.html.haml
blob: 7a08bb3749420ed48b197e09322727cfd073d1b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- 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
      = link_to namespace_project_path(current_user, current_user.fork_of(@project)), title: _('Go to your fork'), class: 'btn has-tooltip' do
        = custom_icon('icon_fork')
        %span= s_('GoToYourFork|Fork')
    - else
      = link_to new_namespace_project_fork_path(@project.namespace, @project), class: 'btn' do
        = custom_icon('icon_fork')
        %span= s_('CreateNewFork|Fork')
    .count-with-arrow
      %span.arrow
      = link_to namespace_project_forks_path(@project.namespace, @project), title: n_('Forks', @project.forks_count), class: 'count' do
        = @project.forks_count