Redmine/app/views/custom_fields/edit.html.erb
Toshi MARUYAMA 0f1c4532a2 rename .rhtml to .html.erb of app/views/custom_fields/edit.rhtml.
:rhtml and :rxml were finally removed as template handlers at Rails 3.1 RC4.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6964 e93f8b46-1217-0410-a6f0-8f06a7374b81
2011-09-01 03:54:52 +00:00

9 lines
503 B
Plaintext

<h2><%= link_to l(:label_custom_field_plural), :controller => 'custom_fields', :action => 'index' %>
&#187; <%= link_to l(@custom_field.type_name), :controller => 'custom_fields', :action => 'index', :tab => @custom_field.class.name %>
&#187; <%=h @custom_field.name %></h2>
<% labelled_tabular_form_for :custom_field, @custom_field, :url => { :action => "edit", :id => @custom_field } do |f| %>
<%= render :partial => 'form', :locals => { :f => f } %>
<%= submit_tag l(:button_save) %>
<% end %>