2012-01-15 18:23:06 +04:00
|
|
|
<%= error_messages_for 'repository' %>
|
|
|
|
|
|
|
|
<div class="box tabular">
|
|
|
|
<p>
|
|
|
|
<%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %>
|
|
|
|
<% if @repository && ! @repository.class.scm_available %>
|
2012-02-10 22:03:10 +04:00
|
|
|
<em class="info error"><%= l(:text_scm_command_not_available) %></em>
|
2012-01-15 18:23:06 +04:00
|
|
|
<% end %>
|
|
|
|
</p>
|
|
|
|
|
2012-01-15 22:19:19 +04:00
|
|
|
<p><%= f.check_box :is_default, :label => :field_repository_is_default %></p>
|
2012-01-17 22:40:52 +04:00
|
|
|
<p><%= f.text_field :identifier %></p>
|
2012-01-15 22:19:19 +04:00
|
|
|
|
2012-01-15 18:23:06 +04:00
|
|
|
<% button_disabled = true %>
|
|
|
|
<% if @repository %>
|
|
|
|
<% button_disabled = ! @repository.class.scm_available %>
|
|
|
|
<%= repository_field_tags(f, @repository)%>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<%= submit_tag(@repository.new_record? ? l(:button_create) : l(:button_save), :disabled => button_disabled) %>
|
|
|
|
<%= link_to l(:button_cancel), settings_project_path(@project, :tab => 'repositories') %>
|
2012-01-20 17:45:42 +04:00
|
|
|
</p>
|