summaryrefslogtreecommitdiff
path: root/app/views/projects/forks/error.html.haml
blob: 022a96b15a75cd715c6d3724955c6ddda7986b0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- page_title _("Fork project")
- if @forked_project && !@forked_project.saved?
  = render Pajamas::AlertComponent.new(title: _('Fork Error!'),
    variant: :danger,
    alert_options: { class: 'gl-mt-5' },
    dismissible: false) do |c|
    = c.body do
      %p
        = _("You tried to fork %{link_to_the_project} but it failed for the following reason:").html_safe % { link_to_the_project: link_to_project(@project) }

      - if @forked_project && @forked_project.errors.any?
        %p
          –
          - error = @forked_project.errors.full_messages.first
          - if error.include?("already been taken")
            = _('Name has already been taken')
          - else
            = error

    = c.actions do
      = link_to _('Try to fork again'), new_project_fork_path(@project), title: _("Fork"), class: "btn gl-alert-action btn-info btn-md gl-button"