blob: 78d3e940ed8ee3ab1a4249d40d6ccbce74ba55b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<%= custom_field_title @custom_field %>
<%= form_tag new_custom_field_path, :method => 'get' do %>
<div class="box">
<p><%= l(:label_custom_field_select_type) %>:</p>
<p>
<%= select_type_radio_buttons(params[:tab]) %>
</p>
</div>
<p><%= submit_tag l(:label_next).html_safe + " »".html_safe, :name => nil %></p>
<% end %>
|