9 lines
617 B
Plaintext
9 lines
617 B
Plaintext
|
- if owner.projects.exists? :name => @project.name
|
||
|
- is_group = owner.class == Group ? "(#{t 'activerecord.models.group'})" : ''
|
||
|
%p.center
|
||
|
=t 'layout.projects.already_exists'
|
||
|
=link_to "#{owner.uname}/#{@project.name} #{is_group}", project_path(owner.projects.by_name(@project.name).first.id)
|
||
|
- else
|
||
|
= form_for @project, :url => fork_project_path(@project), :html => { :class => :form, :multipart => true, :method => :post } do |f|
|
||
|
= hidden_field_tag :group, owner.id if owner.class == Group
|
||
|
=f.submit t('layout.projects.fork_to', :to => "#{owner.uname} #{is_group}"), :class => 'btn btn-primary'
|