Commit 3955a3d8 authored by Marvin Karegyeya's avatar Marvin Karegyeya Committed by Brandon Labuschagne

Update markup in forks/error.html.haml

parent 2fca139b
- page_title _("Fork project") - page_title _("Fork project")
- if @forked_project && !@forked_project.saved? - if @forked_project && !@forked_project.saved?
.gl-alert.gl-alert-danger.gl-mt-5 = render 'shared/global_alert',
= sprite_icon('error', size: 16, css_class: 'gl-icon gl-alert-icon') title: _('Fork Error!'),
%h4.gl-alert-title variant: :danger,
= sprite_icon('fork') alert_class: 'gl-mt-5',
= _("Fork Error!") is_contained: true,
dismissible: false do
.gl-alert-body .gl-alert-body
%p %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) } = _("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) }
...@@ -14,9 +15,9 @@ ...@@ -14,9 +15,9 @@
– –
- error = @forked_project.errors.full_messages.first - error = @forked_project.errors.full_messages.first
- if error.include?("already been taken") - if error.include?("already been taken")
= _("Name has already been taken") = _('Name has already been taken')
- else - else
= error = error
.gl-alert-actions .gl-alert-actions
= link_to _("Try to fork again"), new_project_fork_path(@project), title: _("Fork"), class: "btn gl-alert-action btn-info btn-md gl-button" = link_to _('Try to fork again'), new_project_fork_path(@project), title: _("Fork"), class: "btn gl-alert-action btn-info btn-md gl-button"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment