view .svn/pristine/da/dade97d2f6b0fa5fb73e9c17001539def9496f0c.svn-base @ 1517:dffacf8a6908 redmine-2.5

Update to Redmine SVN revision 13367 on 2.5-stable branch
author Chris Cannam
date Tue, 09 Sep 2014 09:29:00 +0100
parents
children
line wrap: on
line source
<%= title [l(:label_custom_field_plural), custom_fields_path],
  l(:label_custom_field_new) %>

<% selected = 0 %>
<%= form_tag new_custom_field_path, :method => 'get' do %>
  <div class="box">
  <p><%= l(:label_custom_field_select_type) %>:</p>
  <p>
  <% custom_field_type_options.each do |name, type| %>
    <label style="display:block;"><%= radio_button_tag 'type', type, 1==selected+=1 %> <%= name %></label>
  <% end %>
  </p>
  </div>
  <p><%= submit_tag l(:label_next).html_safe + " &#187;".html_safe, :name => nil %></p>
<% end %>