##// END OF EJS Templates
Add unloadable to the sample plugin controller (http://dev.rubyonrails.org/ticket/6001)....
Add unloadable to the sample plugin controller (http://dev.rubyonrails.org/ticket/6001). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1282 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1129:0b6a010a12b9
r1267:27cf6d8d641c
Show More
_repository.rhtml
21 lines | 873 B | text/html+ruby | RhtmlLexer
<% remote_form_for :repository, @repository,
:url => { :controller => 'repositories', :action => 'edit', :id => @project },
:builder => TabularFormBuilder,
:lang => current_language do |f| %>
<%= error_messages_for 'repository' %>
<div class="box tabular">
<p><label><%= l(:label_scm) %></label><%= scm_select_tag(@repository) %></p>
<%= repository_field_tags(f, @repository) if @repository %>
</div>
<div class="contextual">
<%= link_to(l(:button_delete), {:controller => 'repositories', :action => 'destroy', :id => @project},
:confirm => l(:text_are_you_sure),
:method => :post,
:class => 'icon icon-del') if @repository && !@repository.new_record? %>
</div>
<%= submit_tag((@repository.nil? || @repository.new_record?) ? l(:button_create) : l(:button_save)) %>
<% end %>