Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_fork.html.haml « buttons « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1eddc1b2e9b2a37f4db21a9e5f262d88865a7c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- 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
      - can_create_fork = current_user.can?(:create_fork)
      = link_to new_project_fork_path(@project),
          class: "btn btn-secondary #{'has-tooltip disabled' unless can_create_fork}",
          title: (_('You have reached your project limit') unless can_create_fork) do
        = custom_icon('icon_fork')
        %span= s_('CreateNewFork|Fork')
    .count-with-arrow
      %span.arrow
      = link_to project_forks_path(@project), title: n_('Fork', 'Forks', @project.forks_count), class: 'count' do
        = @project.forks_count