##// END OF EJS Templates
add mail footer test (#13482)...
add mail footer test (#13482) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11720 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9980:599736aca7b9
r11490:9fea2ab6d224
Show More
new.html.erb
19 lines | 796 B | text/plain | TextLexer
Jean-Philippe Lang
Slight change to the breadcrumb on custom field admin views....
r3030 <h2><%= link_to l(:label_custom_field_plural), :controller => 'custom_fields', :action => 'index' %>
Jean-Philippe Lang
Removed calls to deprecated Object#type....
r6177 &#187; <%= link_to l(@custom_field.type_name), :controller => 'custom_fields', :action => 'index', :tab => @custom_field.class.name %>
Jean-Philippe Lang
Slight change to the breadcrumb on custom field admin views....
r3030 &#187; <%= l(:label_custom_field_new) %></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Update the new custom field form with remotely....
r9980 <%= labelled_form_for :custom_field, @custom_field, :url => custom_fields_path, :html => {:id => 'custom_field_form'} do |f| %>
Jean-Philippe Lang
* code and views cleaning...
r97 <%= render :partial => 'form', :locals => { :f => f } %>
<%= hidden_field_tag 'type', @custom_field.type %>
<%= submit_tag l(:button_save) %>
<% end %>
Jean-Philippe Lang
Update the new custom field form with remotely....
r9980
<%= javascript_tag do %>
$('#custom_field_field_format').change(function(){
$.ajax({
url: '<%= new_custom_field_path(:format => 'js') %>',
type: 'get',
data: $('#custom_field_form').serialize()
});
});
<% end %>