2007-09-14 15:34:08 +04:00
|
|
|
<% remote_form_for :repository, @repository,
|
|
|
|
:url => { :controller => 'repositories', :action => 'edit', :id => @project },
|
2008-02-13 01:43:37 +03:00
|
|
|
:builder => TabularFormBuilder,
|
|
|
|
:lang => current_language do |f| %>
|
2007-09-14 15:34:08 +04:00
|
|
|
|
|
|
|
<%= error_messages_for 'repository' %>
|
|
|
|
|
|
|
|
<div class="box tabular">
|
2008-02-13 01:43:37 +03:00
|
|
|
<p><label><%= l(:label_scm) %></label><%= scm_select_tag(@repository) %></p>
|
2007-09-14 15:34:08 +04:00
|
|
|
<%= repository_field_tags(f, @repository) if @repository %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="contextual">
|
2008-11-10 21:59:06 +03:00
|
|
|
<% if @repository && !@repository.new_record? %>
|
|
|
|
<%= link_to(l(:label_user_plural), {:controller => 'repositories', :action => 'committers', :id => @project}, :class => 'icon icon-user') %>
|
2007-09-14 15:34:08 +04:00
|
|
|
<%= link_to(l(:button_delete), {:controller => 'repositories', :action => 'destroy', :id => @project},
|
|
|
|
:confirm => l(:text_are_you_sure),
|
|
|
|
:method => :post,
|
2008-11-10 21:59:06 +03:00
|
|
|
:class => 'icon icon-del') %>
|
|
|
|
<% end %>
|
2007-09-14 15:34:08 +04:00
|
|
|
</div>
|
|
|
|
|
2008-06-08 18:59:26 +04:00
|
|
|
<%= submit_tag((@repository.nil? || @repository.new_record?) ? l(:button_create) : l(:button_save), :disabled => @repository.nil?) %>
|
2007-09-14 15:34:08 +04:00
|
|
|
<% end %>
|