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.

new.html.erb 528B

123456789
  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; <%= l(:label_custom_field_new) %></h2>
  4. <%= labelled_form_for :custom_field, @custom_field, :url => custom_fields_path do |f| %>
  5. <%= render :partial => 'form', :locals => { :f => f } %>
  6. <%= hidden_field_tag 'type', @custom_field.type %>
  7. <%= submit_tag l(:button_save) %>
  8. <% end %>