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

_remove_fork.html.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb51aa86170b0449920c9d96597dd1b65f14d175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- return unless @project.forked? && can?(current_user, :remove_fork_project, @project)
- remove_form_id = "js-remove-project-fork-form"

.sub-section
  %h4.danger-title= _('Remove fork relationship')
  %p= remove_fork_project_description_message(@project)

  = form_for @project, url: remove_fork_project_path(@project), method: :delete, html: { id: remove_form_id } do |f|
    %p
      %strong= _('Once removed, the fork relationship cannot be restored. This project will no longer be able to receive or send merge requests to the source project or other forks.')
      = link_to _('Learn more.'), help_page_path('user/project/settings/index', anchor: 'removing-a-fork-relationship'), target: '_blank', rel: 'noopener noreferrer'
    .js-confirm-danger{ data: remove_fork_project_confirm_json(@project, remove_form_id) }