You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

edit.rhtml 503B

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