BigW Consortium Gitlab

_fork.html.haml 1001 Bytes
Newer Older
1 2 3
- 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
4
      = link_to namespace_project_path(current_user, current_user.fork_of(@project)), title: _('Go to your fork'), class: 'btn has-tooltip' do
5
        = custom_icon('icon_fork')
6
        %span= s_('GoToYourFork|Fork')
7
    - elsif !current_user.can_create_project?
8
      = link_to new_project_fork_path(@project), title: _('You have reached your project limit'), class: 'btn has-tooltip disabled' do
9 10
        = custom_icon('icon_fork')
        %span= s_('CreateNewFork|Fork')
11
    - else
12
      = link_to new_project_fork_path(@project), class: 'btn' do
13
        = custom_icon('icon_fork')
14
        %span= s_('CreateNewFork|Fork')
15
    .count-with-arrow
16
      %span.arrow
17
      = link_to project_forks_path(@project), title: n_('Fork', 'Forks', @project.forks_count), class: 'count' do
18
        = @project.forks_count