76aad9b76e
Make the following changes to deal with new behavior in Rails 4.1.2: * Use nested resources to avoid slashes in arguments to path helpers.
20 lines
550 B
Text
20 lines
550 B
Text
- if @forked_project && !@forked_project.saved?
|
|
.alert.alert-danger.alert-block
|
|
%h4
|
|
%i.fa.fa-code-fork
|
|
Fork Error!
|
|
%p
|
|
You tried to fork
|
|
= link_to_project @project
|
|
but it failed for the following reason:
|
|
|
|
|
|
- if @forked_project && @forked_project.errors.any?
|
|
%p
|
|
–
|
|
= @forked_project.errors.full_messages.first
|
|
|
|
%p
|
|
= link_to new_namespace_project_fork_path(@project.namespace, @project), title: "Fork", class: "btn" do
|
|
%i.fa.fa-code-fork
|
|
Try to Fork again
|